28 references to CreateAnd
System.Data.Entity (28)
System\Data\Mapping\ViewGeneration\CellCreator.cs (5)
241
leftQueryWhereClause = BoolExpression.
CreateAnd
(originalCell.GetLeftQuery(viewTarget).WhereClause, leftQueryWhereClause);
244
rightQueryWhereClause = BoolExpression.
CreateAnd
(originalCell.GetRightQuery(viewTarget).WhereClause, rightQueryWhereClause);
420
cQueryWhereClause = BoolExpression.
CreateAnd
(cQueryWhereClause, complexInTypes);
446
sQueryWhereClause = BoolExpression.
CreateAnd
(sQueryWhereClause, conditionExpression);
454
cQueryWhereClause = BoolExpression.
CreateAnd
(cQueryWhereClause, conditionExpression);
System\Data\Mapping\ViewGeneration\CellTreeSimplifier.cs (10)
467
whereClause = BoolExpression.
CreateAnd
(query1.WhereClause, query2.WhereClause);
476
conjunct2 = BoolExpression.
CreateAnd
(query2.WhereClause, g2);
486
conjunct1 = BoolExpression.
CreateAnd
(query1.WhereClause, g1);
487
conjunct2 = BoolExpression.
CreateAnd
(query2.WhereClause, g2);
490
whereClause = BoolExpression.CreateOr(BoolExpression.
CreateAnd
(query1.WhereClause, g1),
491
BoolExpression.
CreateAnd
(query2.WhereClause, g2));
500
conjunct2 = BoolExpression.
CreateAnd
(query2.WhereClause, g2);
501
whereClause = BoolExpression.
CreateAnd
(query1.WhereClause, BoolExpression.CreateNot(conjunct2));
592
merged = BoolExpression.
CreateAnd
(bools1[i], bools2[i]);
600
merged = BoolExpression.
CreateAnd
(bools1[i],
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQuery.cs (1)
52
whereClause = BoolExpression.
CreateAnd
(whereClause, cellQuery.WhereClause);
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryKB.cs (1)
70
BoolExpression inSetExpression = BoolExpression.
CreateAnd
(
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQueryProcessor.cs (1)
80
BoolExpression condition = BoolExpression.
CreateAnd
(q1.Condition, q2.Condition);
System\Data\Mapping\ViewGeneration\QueryRewriting\QueryRewriter.cs (3)
402
BoolExpression domainWhereClause = BoolExpression.
CreateAnd
(currentWhereClause, domainAddedWhereClause);
1222
return BoolExpression.
CreateAnd
(TileToBoolExpr(tile.Arg1), TileToBoolExpr(tile.Arg2));
1224
return BoolExpression.
CreateAnd
(TileToBoolExpr(tile.Arg1), BoolExpression.CreateNot(TileToBoolExpr(tile.Arg2)));
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (4)
143
FragmentQuery cMinusS = FragmentQuery.Create(BoolExpression.
CreateAnd
(cMinusSx.Condition, inExtentCondition));
144
FragmentQuery sMinusC = FragmentQuery.Create(BoolExpression.
CreateAnd
(sMinusCx.Condition, inExtentCondition));
316
BoolExpression result = BoolExpression.
CreateAnd
(expression, BoolExpression.CreateLiteral(restriction, memberMaps.QueryDomainMap));
341
BoolExpression resultingExpr = BoolExpression.
CreateAnd
(expression, BoolExpression.CreateLiteral(restriction, memberMaps.QueryDomainMap));
System\Data\Mapping\ViewGeneration\Structures\BoolExpression.cs (2)
72
return
CreateAnd
(e1, CreateNot(e2));
383
result.Add(
CreateAnd
(b, conjunct));
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (1)
710
m_whereClause = BoolExpression.
CreateAnd
(atoms.ToArray());