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