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)
60return new AndExpr<T_Identifier>(literalExpressions);
System\Data\Common\Utils\Boolean\NegationPusher.cs (1)
81return new AndExpr<T_Identifier>(expression.Children.Select(child => child.Accept(this)));
System\Data\Common\Utils\Boolean\Sentence.cs (1)
90return new AndExpr<T_Identifier>(clauseExpressions);
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
134if (isAnd) { result = new AndExpr<T_Identifier>(children); }
System\Data\Common\Utils\Boolean\Visitor.cs (2)
52return new AndExpr<T_Identifier>(AcceptChildren(expression.Children)); 223return new AndExpr<T_To>(VisitChildren(expression));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (1)
114m_tree = new DomainAndExpr(ToBoolExprList(childList));