5 references to Any
System.Data.Entity (5)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
1042
Debug.Assert(expression.ExpressionKind == DbExpressionKind.
Any
, "DbQuantifierExpression had ExpressionKind other than All or Any?");
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
326
return new DbQuantifierExpression(DbExpressionKind.
Any
, booleanResultType, input, predicate);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
379
case DbExpressionKind.
Any
:
2960
PlanCompiler.Assert(DbExpressionKind.
Any
== e.ExpressionKind || DbExpressionKind.All == e.ExpressionKind, "Invalid DbExpressionKind in DbQuantifierExpression");
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
2400
if (e.ExpressionKind == DbExpressionKind.
Any
)