14 references to And
System.Data.Entity (14)
System\Data\Common\Utils\Boolean\BoolExpr.cs (1)
401
internal override ExprType ExprType { get { return ExprType.
And
; } }
System\Data\Common\Utils\Boolean\Clause.cs (2)
52
bool isAnd = ExprType.
And
== treeType;
116
: base(literals, ExprType.
And
)
System\Data\Common\Utils\Boolean\Sentence.cs (2)
82
bool isAnd = ExprType.
And
== treeType;
156
: base(clauses, ExprType.
And
)
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
58
bool isAnd = ExprType.
And
== tree.ExprType;
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (2)
60
return new BoolExpression(ExprType.
And
, children);
113
case ExprType.
And
:
System\Data\Mapping\ViewGeneration\Structures\BoolExpressionVisitors.cs (6)
269
return VisitAndOr(expression, ExprType.
And
);
279
Debug.Assert(kind == ExprType.Or || kind == ExprType.
And
);
288
if (kind == ExprType.
And
)
499
return VisitAndOr(expression, ExprType.
And
);
509
Debug.Assert(kind == ExprType.Or || kind == ExprType.
And
);
518
if (kind == ExprType.
And
)