9 instantiations of CellQuery
System.Data.Entity (9)
System\Data\Mapping\ViewGeneration\CellCreator.cs (4)
247CellQuery rightQuery = new CellQuery(rightSlots, rightQueryWhereClause, rightExtent, originalCell.GetRightQuery(viewTarget).SelectDistinctFlag); 248CellQuery leftQuery = new CellQuery(leftSlots, leftQueryWhereClause, leftExtent, originalCell.GetLeftQuery(viewTarget).SelectDistinctFlag); 344CellQuery cQuery = new CellQuery(cSlots, cQueryWhereClause, cRootExtent, CellQuery.SelectDistinct.No /*no distinct flag*/); 345CellQuery sQuery = new CellQuery(sSlots, sQueryWhereClause, sRootExtent,
System\Data\Mapping\ViewGeneration\CellTreeSimplifier.cs (1)
527mergedQuery = new CellQuery(mergedSlots, whereClause,
System\Data\Mapping\ViewGeneration\Structures\Cell.cs (2)
58m_cQuery = new CellQuery(source.m_cQuery); 59m_sQuery = new CellQuery(source.m_sQuery);
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (2)
432newMainQuery = new CellQuery(this, mainSlots); 433newOtherQuery = new CellQuery(otherQuery, otherSlots);
86 references to CellQuery
System.Data.Entity (86)
System\Data\Mapping\ViewGeneration\CellCreator.cs (7)
247CellQuery rightQuery = new CellQuery(rightSlots, rightQueryWhereClause, rightExtent, originalCell.GetRightQuery(viewTarget).SelectDistinctFlag); 248CellQuery leftQuery = new CellQuery(leftSlots, leftQueryWhereClause, leftExtent, originalCell.GetLeftQuery(viewTarget).SelectDistinctFlag); 344CellQuery cQuery = new CellQuery(cSlots, cQueryWhereClause, cRootExtent, CellQuery.SelectDistinct.No /*no distinct flag*/); 345CellQuery sQuery = new CellQuery(sSlots, sQueryWhereClause, sRootExtent, 346fragmentMap.IsSQueryDistinct ? CellQuery.SelectDistinct.Yes : CellQuery.SelectDistinct.No);
System\Data\Mapping\ViewGeneration\CellTreeSimplifier.cs (15)
369CellQuery mergedLeftCellQuery; 370CellQuery mergedRightCellQuery; 413internal bool TryMergeTwoCellQueries(CellQuery query1, CellQuery query2, CellTreeOpType opType, 414MemberDomainMap memberDomainMap, out CellQuery mergedQuery) 524CellQuery.SelectDistinct elimDupl = MergeDupl(query1.SelectDistinctFlag, query2.SelectDistinctFlag); 533static private CellQuery.SelectDistinct MergeDupl(CellQuery.SelectDistinct d1, CellQuery.SelectDistinct d2) 535if (d1 == CellQuery.SelectDistinct.Yes || d2 == CellQuery.SelectDistinct.Yes) 537return CellQuery.SelectDistinct.Yes; 541return CellQuery.SelectDistinct.No; 552MergeBoolExpressions(CellQuery query1, CellQuery query2,
System\Data\Mapping\ViewGeneration\CqlGeneration\ExtentCqlBlock.cs (4)
31CellQuery.SelectDistinct selectDistinct, 47private readonly CellQuery.SelectDistinct m_selectDistinct; 57if (m_selectDistinct == CellQuery.SelectDistinct.Yes) 92if (m_selectDistinct == CellQuery.SelectDistinct.Yes)
System\Data\Mapping\ViewGeneration\QueryRewriting\FragmentQuery.cs (2)
41public static FragmentQuery Create(BoolExpression fromVariable, CellQuery cellQuery) 49public static FragmentQuery Create(string label, RoleBoolean roleBoolean, CellQuery cellQuery)
System\Data\Mapping\ViewGeneration\QueryRewriting\RewritingValidator.cs (2)
503CellQuery thisQuery = m_wrapper.RightCellQuery; 504CellQuery thatQuery = node.LeftCellWrapper.RightCellQuery;
System\Data\Mapping\ViewGeneration\Structures\Cell.cs (10)
43private Cell(CellQuery cQuery, CellQuery sQuery, CellLabel label, int cellNumber) 67private CellQuery m_cQuery; 68private CellQuery m_sQuery; 78internal CellQuery CQuery 84internal CellQuery SQuery 153internal CellQuery GetLeftQuery(ViewTarget side) 159internal CellQuery GetRightQuery(ViewTarget side) 248internal static Cell CreateCS(CellQuery cQuery, CellQuery sQuery, CellLabel label, int cellNumber)
System\Data\Mapping\ViewGeneration\Structures\CellQuery.cs (7)
96internal CellQuery(CellQuery source) 109private CellQuery(CellQuery existing, ProjectedSlot[] newSlots) : 206internal ErrorLog.Record CheckForDuplicateFields(CellQuery cQuery, Cell sourceCell) 334CellQuery rightCellQuery = isCQuery? sourceCell.SQuery : sourceCell.CQuery; 392internal void CreateFieldAlignedCellQueries(CellQuery otherQuery, MemberProjectionIndex projectedSlotMap, 393out CellQuery newMainQuery, out CellQuery newOtherQuery)
System\Data\Mapping\ViewGeneration\Structures\Domain.cs (5)
346CellQuery cQuery = cell.CQuery; 373private static bool GetRestrictedOrUnrestrictedDomain(MemberProjectedSlot slot, CellQuery cellQuery, EdmItemCollection edmItemCollection, out CellConstantSet domain) 397CellQuery cQuery = cell.CQuery; 398CellQuery sQuery = cell.SQuery; 465private static bool TryGetDomainRestrictedByWhereClause(IEnumerable<Constant> domain, MemberProjectedSlot slot, CellQuery cellQuery, out CellConstantSet result)
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (2)
113CellQuery cellQuery = LeftCellWrapper.RightCellQuery; 130CellQuery cellQuery = LeftCellWrapper.RightCellQuery;
System\Data\Mapping\ViewGeneration\Structures\LeftCellWrapper.cs (9)
49private CellQuery m_leftCellQuery; // expression that computes this portion 50private CellQuery m_rightCellQuery; // expression that computes this portion 69CellQuery leftCellQuery, CellQuery rightCellQuery, MemberMaps memberMaps, IEnumerable<Cell> inputCells) 82CellQuery leftCellQuery, CellQuery rightCellQuery, MemberMaps memberMaps, Cell inputCell) 140internal CellQuery RightCellQuery 145internal CellQuery LeftCellQuery 272CellQuery rightQuery = RightCellQuery;
System\Data\Mapping\ViewGeneration\Structures\MemberDomainMap.cs (4)
81CellQuery cellQuery = cell.GetLeftQuery(viewTarget); 139CellQuery cellQuery = cell.GetLeftQuery(viewTarget); 267CellQuery cQuery = cell.CQuery; 268CellQuery sQuery = cell.SQuery;
System\Data\Mapping\ViewGeneration\Structures\ScalarConstant.cs (1)
23/// A class that denotes a constant value that can be stored in a multiconstant or in a projected slot of a <see cref="CellQuery"/>.
System\Data\Mapping\ViewGeneration\Validation\BasicCellRelation.cs (2)
29internal BasicCellRelation(CellQuery cellQuery, ViewCellRelation viewCellRelation, 41private CellQuery m_cellQuery;
System\Data\Mapping\ViewGeneration\Validation\ErrorPatternMatcher.cs (7)
121private static bool HasNotNullCondition(CellQuery cellQuery, MemberPath member) 150CellQuery leftCellQuery = leftCellWrapper.OnlyInputCell.GetLeftQuery(viewTarget); 158CellQuery rightCellQuery = leftCellWrapper.OnlyInputCell.GetRightQuery(viewTarget); 196CellQuery cellQuery = leftCellWrapper.OnlyInputCell.GetLeftQuery(m_viewgenContext.ViewTarget); 285CellQuery rightCellQuery = leftCellWrapper.OnlyInputCell.GetRightQuery(ViewTarget.QueryView); 294CellQuery leftCellQuery = leftCellWrapper.OnlyInputCell.GetLeftQuery(ViewTarget.QueryView); 645CellQuery anotherCellQuery = anotherCell.GetLeftQuery(m_viewgenContext.ViewTarget);
System\Data\Mapping\ViewGeneration\Validation\ForeignConstraint.cs (1)
534CellQuery cQuery = cell.CQuery;
System\Data\Mapping\ViewGeneration\Validator.cs (1)
285if (cell.SQuery.SelectDistinctFlag == CellQuery.SelectDistinct.Yes)
System\Data\Mapping\ViewGeneration\ViewgenContext.cs (6)
303CellQuery left = alignedCell.GetLeftQuery(viewTarget); 304CellQuery right = alignedCell.GetRightQuery(viewTarget); 349CellQuery mainQuery = cell.GetLeftQuery(viewTarget); 350CellQuery otherQuery = cell.GetRightQuery(viewTarget); 352CellQuery newMainQuery; 353CellQuery newOtherQuery;
System\Data\Mapping\ViewGeneration\ViewGenerator.cs (1)
501CellQuery cellQuery = cell.GetLeftQuery(viewTarget);