8 references to AndExpr
System.Data.Entity (8)
System\Data\Common\Utils\Boolean\BoolExpr.cs (1)
388
:
this
((IEnumerable<BoolExpr<T_Identifier>>)children)
System\Data\Common\Utils\Boolean\Clause.cs (1)
60
return new
AndExpr
<T_Identifier>(literalExpressions);
System\Data\Common\Utils\Boolean\NegationPusher.cs (1)
81
return new
AndExpr
<T_Identifier>(expression.Children.Select(child => child.Accept(this)));
System\Data\Common\Utils\Boolean\Sentence.cs (1)
90
return new
AndExpr
<T_Identifier>(clauseExpressions);
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
134
if (isAnd) { result = new
AndExpr
<T_Identifier>(children); }
System\Data\Common\Utils\Boolean\Visitor.cs (2)
52
return new
AndExpr
<T_Identifier>(AcceptChildren(expression.Children));
223
return new
AndExpr
<T_To>(VisitChildren(expression));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (1)
114
m_tree = new
DomainAndExpr
(ToBoolExprList(childList));