14 references to And
System.Data.Entity (14)
System\Data\Common\Utils\Boolean\BoolExpr.cs (1)
401internal override ExprType ExprType { get { return ExprType.And; } }
System\Data\Common\Utils\Boolean\Clause.cs (2)
52bool isAnd = ExprType.And == treeType; 116: base(literals, ExprType.And)
System\Data\Common\Utils\Boolean\Sentence.cs (2)
82bool isAnd = ExprType.And == treeType; 156: base(clauses, ExprType.And)
System\Data\Common\Utils\Boolean\Simplifier.cs (1)
58bool isAnd = ExprType.And == tree.ExprType;
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (2)
60return new BoolExpression(ExprType.And, children); 113case ExprType.And:
System\Data\Mapping\ViewGeneration\Structures\BoolExpressionVisitors.cs (6)
269return VisitAndOr(expression, ExprType.And); 279Debug.Assert(kind == ExprType.Or || kind == ExprType.And); 288if (kind == ExprType.And) 499return VisitAndOr(expression, ExprType.And); 509Debug.Assert(kind == ExprType.Or || kind == ExprType.And); 518if (kind == ExprType.And)