Enum SortDirections
- Namespace
- FluentCommand.Query
- Assembly
- FluentCommand.dll
Specifies the sort direction to use in SQL ORDER BY clauses.
public enum SortDirections
- Extension Methods
Fields
Ascending = 0
Sorts the results in ascending order (e.g., A to Z, 0 to 9). Corresponds to the SQL
ASC
keyword.Descending = 1
Sorts the results in descending order (e.g., Z to A, 9 to 0). Corresponds to the SQL
DESC
keyword.