22 references to SelectDistinct
System.Data.Entity (22)
System\Data\Mapping\ViewGeneration\CellCreator.cs (3)
344CellQuery cQuery = new CellQuery(cSlots, cQueryWhereClause, cRootExtent, CellQuery.SelectDistinct.No /*no distinct flag*/); 346fragmentMap.IsSQueryDistinct ? CellQuery.SelectDistinct.Yes : CellQuery.SelectDistinct.No);
System\Data\Mapping\ViewGeneration\CellTreeSimplifier.cs (8)
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;
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\Structures\CellQuery.cs (6)
60private SelectDistinct m_selectDistinct; 71internal CellQuery(List<ProjectedSlot> slots, BoolExpression whereClause, MemberPath rootMember, SelectDistinct eliminateDuplicates) 82SelectDistinct elimDupl, MemberPath rootMember) 118internal SelectDistinct SelectDistinctFlag 854if (m_selectDistinct == SelectDistinct.Yes) 890if (m_selectDistinct == SelectDistinct.Yes)
System\Data\Mapping\ViewGeneration\Validator.cs (1)
285if (cell.SQuery.SelectDistinctFlag == CellQuery.SelectDistinct.Yes)