mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
14 lines
543 B
Plaintext
14 lines
543 B
Plaintext
import semmle.code.csharp.frameworks.EntityFramework::EntityFramework
|
|
import shared.FlowSummaries
|
|
import semmle.code.csharp.dataflow.ExternalFlow as ExternalFlow
|
|
|
|
private class IncludeEFSummarizedCallable extends IncludeSummarizedCallable {
|
|
IncludeEFSummarizedCallable() { this.asSummarizedCallable() instanceof EFSummarizedCallable }
|
|
}
|
|
|
|
query predicate sourceNode(DataFlow::Node node, string kind) {
|
|
ExternalFlow::sourceNode(node, kind)
|
|
}
|
|
|
|
query predicate sinkNode(DataFlow::Node node, string kind) { ExternalFlow::sinkNode(node, kind) }
|