2 instantiations of DbQuantifierExpression
System.Data.Entity (2)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (2)
310
return new
DbQuantifierExpression
(DbExpressionKind.All, booleanResultType, input, predicate);
326
return new
DbQuantifierExpression
(DbExpressionKind.Any, booleanResultType, input, predicate);
23 references to DbQuantifierExpression
System.Data.Entity (23)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (2)
733
/// Visitor pattern method for <see cref="
DbQuantifierExpression
"/>.
737
public override void Visit(
DbQuantifierExpression
expression)
System\Data\Common\CommandTrees\DbExpressionVisitor.cs (1)
240
public abstract void Visit(
DbQuantifierExpression
expression);
System\Data\Common\CommandTrees\DbExpressionVisitor_TResultType.cs (1)
276
public abstract TResultType Visit(
DbQuantifierExpression
expression);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
1023
public override DbExpression Visit(
DbQuantifierExpression
expression)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (8)
298
/// Creates a new <see cref="
DbQuantifierExpression
"/> that determines whether the given predicate holds for all elements of the input set.
307
public static
DbQuantifierExpression
All(this DbExpressionBinding input, DbExpression predicate)
314
/// Creates a new <see cref="
DbQuantifierExpression
"/> that determines whether the given predicate holds for any element of the input set.
323
public static
DbQuantifierExpression
Any(this DbExpressionBinding input, DbExpression predicate)
1916
/// Creates a new <see cref="
DbQuantifierExpression
"/> that determines whether the given predicate holds for all elements of the input set.
1933
public static
DbQuantifierExpression
All(this DbExpression source, Func<DbExpression, DbExpression> predicate)
1965
/// Creates a new <see cref="
DbQuantifierExpression
"/> that determines whether the given predicate holds for any element of the input set.
1982
public static
DbQuantifierExpression
Any(this DbExpression source, Func<DbExpression, DbExpression> predicate)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
825
public override void Visit(
DbQuantifierExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
701
public override void Visit(
DbQuantifierExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
996
public override TreeNode Visit(
DbQuantifierExpression
e)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
234
public override TReturn Visit(
DbQuantifierExpression
expression)
System\Data\Mapping\ViewValidator.cs (1)
581
public override DbExpressionEntitySetInfo Visit(
DbQuantifierExpression
expression)
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
2952
public override Node Visit(
DbQuantifierExpression
e)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
593
public override bool Visit(
DbQuantifierExpression
expression)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (3)
2395
public override ISqlFragment Visit(
DbQuantifierExpression
e)
4141
/// <see cref="Visit(
DbQuantifierExpression
)"/>
4146
/// <param name="negatePredicate">This is passed from <see cref="Visit(
DbQuantifierExpression
)"/>