OrderByBuilderExtensions extension
An extension on OrderByBuilder that provides a fluent API for building ORDER BY clauses.
Methods
-
asc(
String columnName, {String? tableName}) → void -
Available on OrderByBuilder, provided by the OrderByBuilderExtensions extension
Adds an ascending ORDER BY column to the clause. -
ascWithTable(
String tableName, String columnName) → void -
Available on OrderByBuilder, provided by the OrderByBuilderExtensions extension
Adds an ascending ORDER BY column to the clause with table name. -
desc(
String columnName, {String? tableName}) → void -
Available on OrderByBuilder, provided by the OrderByBuilderExtensions extension
Adds a descending ORDER BY column to the clause. -
descWithTable(
String tableName, String columnName) → void -
Available on OrderByBuilder, provided by the OrderByBuilderExtensions extension
Adds a descending ORDER BY column to the clause with table name.