8 references to AscendingSort
System.Data.Entity (8)
System\Data\Query\InternalTrees\Dump.cs (1)
506
attrs.Add("Ascending", sortKey.
AscendingSort
);
System\Data\Query\InternalTrees\OpCopier.cs (1)
210
sortKey.
AscendingSort
,
System\Data\Query\PlanCompiler\CTreeGenerator.cs (2)
1539
sortClause = (sortKey.
AscendingSort
? keyExpression.ToSortClause(sortKey.Collation) : keyExpression.ToSortClauseDescending(sortKey.Collation));
1543
sortClause = (sortKey.
AscendingSort
? keyExpression.ToSortClause() : keyExpression.ToSortClauseDescending());
System\Data\Query\PlanCompiler\NestPullup.cs (3)
1627
inputNestOp.PrefixSortKeys.Add(Command.CreateSortKey(sk.Var, sk.
AscendingSort
, sk.Collation));
1667
sortKeyList.Add(Command.CreateSortKey(sk.Var, sk.
AscendingSort
, sk.Collation));
1676
sortKeyList.Add(Command.CreateSortKey(sk.Var, sk.
AscendingSort
, sk.Collation));
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
683
InternalTrees.SortKey newKey = Command.CreateSortKey(v, k.
AscendingSort
, k.Collation);