mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
10 lines
441 B
Plaintext
10 lines
441 B
Plaintext
import semmle.code.csharp.dataflow.FlowSummary
|
|
import semmle.code.csharp.dataflow.internal.FlowSummaryImpl::Private::TestOutput
|
|
import semmle.code.csharp.frameworks.EntityFramework::EntityFramework
|
|
|
|
private class IncludeSummarizedCallable extends RelevantSummarizedCallable {
|
|
IncludeSummarizedCallable() { this instanceof EFSummarizedCallable }
|
|
|
|
override string getFullString() { result = this.(Callable).getQualifiedNameWithTypes() }
|
|
}
|