26 references to And
System.Data.Entity (26)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
602return VisitBinary(expression, CqtBuilder.And);
System\Data\Common\EntitySql\SemanticAnalyzer.cs (3)
4516return args.Left.And(args.Right); 4812DbExpression converted = left.And(exists); 5247return valueExpr.GreaterThanOrEqual(limitsExpr.Left).And(valueExpr.LessThanOrEqual(limitsExpr.Right));
System\Data\Mapping\FunctionImportMappingComposable.cs (1)
388DbExpression predicate = Helpers.BuildBalancedTreeInPlace(conditions.Select(c => GeneratePredicate(c, row)).ToArray(), (prev, next) => prev.And(next));
System\Data\Mapping\StorageMappingItemCollection.ViewDictionary.cs (1)
314filter = null == filter ? notIsNull : filter.And(notIsNull);
System\Data\Mapping\Update\Internal\UpdateCompiler.cs (1)
400else { predicate = predicate.And(clauseExpression); }
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (1)
198cqt = cqt.And(m_singleClauses[i].AsCqt(leftRow, rightRow));
System\Data\Mapping\ViewGeneration\CqlGeneration\SlotInfo.cs (1)
172cqt = cqt.And(cqt.IsNull().Not());
System\Data\Mapping\ViewGeneration\Structures\BoolExpressionVisitors.cs (1)
349DbExpression cqt = VisitAndOr(expression, DbExpressionBuilder.And);
System\Data\Mapping\ViewGeneration\Structures\NegatedConstant.cs (1)
150cqt = cqt.And(notEqualsExpr);
System\Data\Mapping\ViewGeneration\Structures\ScalarRestriction.cs (1)
119cqt = cqt != null ? cqt.And(varIsNotNull) : varIsNotNull;
System\Data\Objects\ELinq\ExpressionConverter.cs (5)
1220else { shreddedEquals = shreddedEquals.And(elementsEquals); } 1298return constant.Equal(unknown).And(unknown.IsNull().Not()); // add more logic to avoid undefined result for true clr semantics 1313return left.Equal(right).Or(left.IsNull().And(right.IsNull())); 1317var bothNull = left.IsNull().And(right.IsNull()); 1325return (bothNotNull.And(anyOneIsNull.Not())).Or(bothNull);
System\Data\Objects\ELinq\MethodCallTranslator.cs (1)
2264constantCqt = constantCqt.And(value.IsNull().Not());
System\Data\Objects\ELinq\Translator.cs (4)
953return left.And(right); 1198return left.And(right); 1217DbExpression firstExpression = left.And(right.Not()); 1218DbExpression secondExpression = left.Not().And(right);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
921condExpr = left.And(VisitChild(n, 1));
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1864DbExpression predicate = Helpers.BuildBalancedTreeInPlace(predicates, (left, right) => left.And(right));
System\Data\SqlClient\SqlGen\Sql8ExpressionRewriter.cs (2)
252DbExpression bothNullExpression = leftIsNullExpression.And(rightIsNullExpression); 262existsPredicate = existsPredicate.And(orExpression);