14 references to Sort
System.Data.Entity (14)
System\Data\Query\InternalTrees\Dump.cs (1)
989case OpType.Sort:
System\Data\Query\InternalTrees\RelOps.cs (3)
578Debug.Assert(opType == OpType.Sort || opType == OpType.ConstrainedSort, "SortBaseOp OpType must be Sort or ConstrainedSort"); 601private SortOp() : base(OpType.Sort) { } 603internal SortOp(List<SortKey> sortKeys) : base(OpType.Sort, sortKeys) {}
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
1372else if (OpType.Sort == inputNode.Op.OpType) 1431|| (OpType.Sort == inputNode.Child0.Op.OpType
System\Data\Query\PlanCompiler\NestPullup.cs (4)
814if (n.Child0.Op.OpType == OpType.Sort) 1246if (OpType.Sort == nestOpInput.Op.OpType) 1796if (newNode.Op.OpType == OpType.Sort) 2754if (command.Root.Child0 != null && command.Root.Child0.Op.OpType == OpType.Sort)
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
1215case OpType.Sort:
System\Data\Query\PlanCompiler\PreProcessor.cs (1)
2342if (OpType.Sort == n.Child0.Op.OpType || OpType.ConstrainedSort == n.Child0.Op.OpType)
System\Data\Query\PlanCompiler\TransformationRules.cs (1)
4338internal static readonly SimpleRule Rule_SortOpOverAtMostOneRow = new SimpleRule(OpType.Sort, ProcessSortOpOverAtMostOneRow);
System\Data\Query\PlanCompiler\VarRefManager.cs (1)
122case OpType.Sort: