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