8 references to Ascending
System.Data.Entity (8)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (2)
109
result = (clause.
Ascending
? CqtBuilder.ToSortClause(newExpression, clause.Collation) : CqtBuilder.ToSortClauseDescending(newExpression, clause.Collation));
113
result = (clause.
Ascending
? CqtBuilder.ToSortClause(newExpression) : CqtBuilder.ToSortClauseDescending(newExpression));
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
801
Begin("DbSortClause", "Ascending", clause.
Ascending
, "Collation", collStr);
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
668
_key.Append(clause.
Ascending
? "ASC(" : "DESC(");
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
965
TreeNode key = this.Visit((clause.
Ascending
? "Asc" : "Desc"), clause.Expression);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
2860
sortKey = Command.CreateSortKey(specVar, clause.
Ascending
);
2864
sortKey = Command.CreateSortKey(specVar, clause.
Ascending
, clause.Collation);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
3705
orderByClause.Append(sortClause.
Ascending
? " ASC" : " DESC");