30 references to RightCellQuery
System.Data.Entity (30)
System\Data\Mapping\ViewGeneration\BasicViewGenerator.cs (2)
135
EntitySetBase extent = childNode.LeftCellWrapper.
RightCellQuery
.Extent; // relation or extent to group by
464
return leaf.LeftCellWrapper.
RightCellQuery
.Extent as EntitySet;
System\Data\Mapping\ViewGeneration\CellTreeSimplifier.cs (5)
295
extentMap.Add(leafNode.LeftCellWrapper.
RightCellQuery
.Extent, leafNode);
328
extentMap.Add(leafNode.LeftCellWrapper.
RightCellQuery
.Extent, leafNode);
341
EntitySetBase firstExtent = firstNode.LeftCellWrapper.
RightCellQuery
.Extent;
371
if (!TryMergeTwoCellQueries(leaf1.LeftCellWrapper.
RightCellQuery
, leaf2.LeftCellWrapper.
RightCellQuery
, opType, m_viewgenContext.MemberMaps.RightDomainMap, out mergedRightCellQuery))
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (5)
248
MemberProjectedSlot slot = wrapper.
RightCellQuery
.ProjectedSlotAt(index) as MemberProjectedSlot;
256
BoolExpression cWhereClause = PropagateCellConstantsToWhereClause(wrapper, wrapper.
RightCellQuery
.WhereClause,
333
BoolExpression expression = wrapper.
RightCellQuery
.WhereClause;
503
CellQuery thisQuery = m_wrapper.
RightCellQuery
;
504
CellQuery thatQuery = node.LeftCellWrapper.
RightCellQuery
;
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (5)
37
cellWrapper.
RightCellQuery
);
91
get { return LeftCellWrapper.
RightCellQuery
.NumProjectedSlots; }
96
get { return LeftCellWrapper.
RightCellQuery
.NumBoolVars; }
113
CellQuery cellQuery = LeftCellWrapper.
RightCellQuery
;
130
CellQuery cellQuery = LeftCellWrapper.
RightCellQuery
;
System\Data\Mapping\ViewGeneration\Structures\LeftCellWrapper.cs (6)
272
CellQuery rightQuery =
RightCellQuery
;
292
int projectedPosition =
RightCellQuery
.GetProjectedPosition(new MemberProjectedSlot(member));
316
ProjectedSlot slot =
RightCellQuery
.ProjectedSlotAt(projectedPosition);
360
bool whereClauseEqual = BoolExpression.EqualityComparer.Equals(left.
RightCellQuery
.WhereClause,
361
right.
RightCellQuery
.WhereClause);
368
return BoolExpression.EqualityComparer.GetHashCode(wrapper.
RightCellQuery
.WhereClause) ^ wrapper.RightExtent.GetHashCode();
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (6)
307
var nonAssociationWrappers = leftCellWrappers.Where(r => !(r.LeftExtent is AssociationSet) && !(r.
RightCellQuery
.Extent is AssociationSet));
312
EntitySetBase rightExtent = firstLeftCWrapper.
RightCellQuery
.Extent;
317
if (!leftCellWrapper.
RightCellQuery
.Extent.EdmEquals(rightExtent))
324
Strings.Viewgen_ErrorPattern_TableMappedToMultipleES(leftCellWrapper.LeftExtent.ToString(), leftCellWrapper.
RightCellQuery
.Extent.ToString(), rightExtent.ToString()),
689
return a.
RightCellQuery
== b.
RightCellQuery
;
System\Data\Mapping\ViewGeneration\ViewGenerator.cs (1)
470
usedCells[i].
RightCellQuery
.InitializeBoolExpressions(numBoolVars, i);