1 instantiation of DbAndExpression
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
690
return new
DbAndExpression
(resultType, left, right);
22 references to DbAndExpression
System.Data.Entity (22)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (2)
363
/// Visitor pattern method for <see cref="
DbAndExpression
"/>.
367
public override void Visit(
DbAndExpression
expression)
System\Data\Common\CommandTrees\DbExpressionVisitor.cs (1)
31
public abstract void Visit(
DbAndExpression
expression);
System\Data\Common\CommandTrees\DbExpressionVisitor_TResultType.cs (1)
33
public abstract TResultType Visit(
DbAndExpression
expression);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
598
public override DbExpression Visit(
DbAndExpression
expression)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (2)
678
/// Creates an <see cref="
DbAndExpression
"/> that performs the logical And of the left and right arguments.
687
public static
DbAndExpression
And(this DbExpression left, DbExpression right)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
564
public override void Visit(
DbAndExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
400
public override void Visit(
DbAndExpression
e)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
631
public override TreeNode Visit(
DbAndExpression
e)
System\Data\Common\CommandTrees\Internal\PatternMatchRules.cs (2)
121
/// Constructs a new pattern that is matched iff both <paramref name="pattern1"/> and <paramref name="pattern2"/> are matched. Does NOT return a pattern that matches <see cref="
DbAndExpression
"/>. Use <see cref="MatchKind"/> with an argument of <see cref="DbExpressionKind.And"/> to match an AND expression
129
/// Constructs a new pattern that is matched iff all of <paramref name="pattern1"/>, <paramref name="pattern2"/> and <paramref name="pattern3"/> are matched. Does NOT return a pattern that matches <see cref="
DbAndExpression
"/>. Use <see cref="MatchKind"/> with an argument of <see cref="DbExpressionKind.And"/> to match an AND expression
System\Data\Mapping\Update\Internal\Propagator.Evaluator.cs (1)
254
public override PropagatorResult Visit(
DbAndExpression
predicate)
System\Data\Mapping\Update\Internal\Propagator.JoinPropagator.JoinPredicateVisitor.cs (1)
105
public override object Visit(
DbAndExpression
node)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
62
public override TReturn Visit(
DbAndExpression
expression)
System\Data\Mapping\ViewValidator.cs (1)
425
public override DbExpressionEntitySetInfo Visit(
DbAndExpression
expression)
System\Data\Objects\ELinq\ExpressionConverter.cs (1)
1317
var
bothNull = left.IsNull().And(right.IsNull());
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1519
public override Node Visit(
DbAndExpression
e)
System\Data\SqlClient\SqlGen\DmlSqlGenerator.cs (1)
499
public override void Visit(
DbAndExpression
expression)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
221
public override bool Visit(
DbAndExpression
expression)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
579
public override ISqlFragment Visit(
DbAndExpression
e)
1877
/// <seealso cref="Visit(
DbAndExpression
)"/>