12 references to Or
System.Data.Entity (12)
System\Data\Common\Utils\Boolean\BoolExpr.cs (1)
441
internal override ExprType ExprType { get { return ExprType.
Or
; } }
System\Data\Common\Utils\Boolean\Clause.cs (2)
53
Debug.Assert(isAnd || ExprType.
Or
== treeType);
149
: base(literals, ExprType.
Or
)
System\Data\Common\Utils\Boolean\Sentence.cs (2)
83
Debug.Assert(isAnd || ExprType.
Or
== treeType);
129
: base(clauses, ExprType.
Or
)
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
59
Debug.Assert(isAnd || ExprType.
Or
== tree.ExprType);
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (2)
67
return new BoolExpression(ExprType.
Or
, children);
116
case ExprType.
Or
:
System\Data\Mapping\ViewGeneration\Structures\BoolExpressionVisitors.cs (4)
274
return VisitAndOr(expression, ExprType.
Or
);
279
Debug.Assert(kind == ExprType.
Or
|| kind == ExprType.And);
504
return VisitAndOr(expression, ExprType.
Or
);
509
Debug.Assert(kind == ExprType.
Or
|| kind == ExprType.And);