8 references to OrExpr
System.Data.Entity (8)
System\Data\Common\Utils\Boolean\BoolExpr.cs (1)
428: this((IEnumerable<BoolExpr<T_Identifier>>)children)
System\Data\Common\Utils\Boolean\Clause.cs (1)
64return new OrExpr<T_Identifier>(literalExpressions);
System\Data\Common\Utils\Boolean\NegationPusher.cs (1)
76return new OrExpr<T_Identifier>(expression.Children.Select(child => child.Accept(this)));
System\Data\Common\Utils\Boolean\Sentence.cs (1)
94return new OrExpr<T_Identifier>(clauseExpressions);
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
135else { result = new OrExpr<T_Identifier>(children); }
System\Data\Common\Utils\Boolean\Visitor.cs (2)
56return new OrExpr<T_Identifier>(AcceptChildren(expression.Children)); 228return new OrExpr<T_To>(VisitChildren(expression));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (1)
117m_tree = new DomainOrExpr(ToBoolExprList(childList));