6 references to CreateSortKey
System.Data.Entity (6)
System\Data\Query\InternalTrees\OpCopier.cs (1)
208return Command.CreateSortKey(
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
2864sortKey = Command.CreateSortKey(specVar, clause.Ascending, clause.Collation);
System\Data\Query\PlanCompiler\NestPullup.cs (3)
1627inputNestOp.PrefixSortKeys.Add(Command.CreateSortKey(sk.Var, sk.AscendingSort, sk.Collation)); 1667sortKeyList.Add(Command.CreateSortKey(sk.Var, sk.AscendingSort, sk.Collation)); 1676sortKeyList.Add(Command.CreateSortKey(sk.Var, sk.AscendingSort, sk.Collation));
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
683InternalTrees.SortKey newKey = Command.CreateSortKey(v, k.AscendingSort, k.Collation);