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)
64
return new
OrExpr
<T_Identifier>(literalExpressions);
System\Data\Common\Utils\Boolean\NegationPusher.cs (1)
76
return new
OrExpr
<T_Identifier>(expression.Children.Select(child => child.Accept(this)));
System\Data\Common\Utils\Boolean\Sentence.cs (1)
94
return new
OrExpr
<T_Identifier>(clauseExpressions);
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
135
else { result = new
OrExpr
<T_Identifier>(children); }
System\Data\Common\Utils\Boolean\Visitor.cs (2)
56
return new
OrExpr
<T_Identifier>(AcceptChildren(expression.Children));
228
return new
OrExpr
<T_To>(VisitChildren(expression));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (1)
117
m_tree = new
DomainOrExpr
(ToBoolExprList(childList));