9 references to All
System.Data.Entity (9)
System\Data\Common\CommandTrees\AbstractExpressions.cs (1)
718
if ((kind < DbExpressionKind.
All
) || (DbExpressionKind.Lambda < kind))
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
1036
if (DbExpressionKind.
All
== expression.ExpressionKind)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
310
return new DbQuantifierExpression(DbExpressionKind.
All
, booleanResultType, input, predicate);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (4)
380
case DbExpressionKind.
All
:
2960
PlanCompiler.Assert(DbExpressionKind.Any == e.ExpressionKind || DbExpressionKind.
All
== e.ExpressionKind, "Invalid DbExpressionKind in DbQuantifierExpression");
2979
if (DbExpressionKind.
All
== e.ExpressionKind)
3025
if (DbExpressionKind.
All
== e.ExpressionKind)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
2399
bool negatePredicate = (e.ExpressionKind == DbExpressionKind.
All
);
2406
Debug.Assert(e.ExpressionKind == DbExpressionKind.
All
);