Table of Contents

Enum OrderClauseType

Namespace
YndigoBlue.Velocity.Enums
Assembly
YndigoBlue.Velocity.dll

Specifies the sort direction for columns in an ORDER BY clause.

public enum OrderClauseType

Fields

Ascending = 1

Sort the column in ascending order (A-Z, 0-9, smallest to largest).

Descending = 2

Sort the column in descending order (Z-A, 9-0, largest to smallest).

Remarks

Order clauses control the sorting of query results. Each column in an ORDER BY clause can be sorted independently in ascending or descending order.