8 references to AscendingSort
System.Data.Entity (8)
System\Data\Query\InternalTrees\Dump.cs (1)
506attrs.Add("Ascending", sortKey.AscendingSort);
System\Data\Query\InternalTrees\OpCopier.cs (1)
210sortKey.AscendingSort,
System\Data\Query\PlanCompiler\CTreeGenerator.cs (2)
1539sortClause = (sortKey.AscendingSort ? keyExpression.ToSortClause(sortKey.Collation) : keyExpression.ToSortClauseDescending(sortKey.Collation)); 1543sortClause = (sortKey.AscendingSort ? keyExpression.ToSortClause() : keyExpression.ToSortClauseDescending());
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);