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