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