7 references to And
System.Data.Entity (7)
System\Data\Common\CommandTrees\Internal\PatternMatchRules.cs (2)
121/// Constructs a new pattern that is matched iff both <paramref name="pattern1"/> and <paramref name="pattern2"/> are matched. Does NOT return a pattern that matches <see cref="DbAndExpression"/>. Use <see cref="MatchKind"/> with an argument of <see cref="DbExpressionKind.And"/> to match an AND expression 129/// Constructs a new pattern that is matched iff all of <paramref name="pattern1"/>, <paramref name="pattern2"/> and <paramref name="pattern3"/> are matched. Does NOT return a pattern that matches <see cref="DbAndExpression"/>. Use <see cref="MatchKind"/> with an argument of <see cref="DbExpressionKind.And"/> to match an AND expression
System\Data\Common\CommandTrees\OperatorExpressions.cs (1)
30: base(DbExpressionKind.And, booleanResultType, left, right)
System\Data\Mapping\ViewValidator.cs (1)
97case DbExpressionKind.And:
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
371case DbExpressionKind.And:
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
581return VisitBinaryExpression(" AND ", DbExpressionKind.And, e.Left, e.Right); 2747kind != DbExpressionKind.And &&