SqlQuery.OrderBy method (1 of 2)

namespace: Serenity.Data   assemblySerenity.Net.Data

Adds a field name or an SQL expression to the ORDER BY clause.

public SqlQuery OrderBy(string expression, bool desc = false)
parameter description
expression A field or an SQL expression.
desc True to add " DESC" keyword to the expression.

Return Value

The query itself.

See Also


SqlQuery.OrderBy method (2 of 2)

namespace: Serenity.Data   assemblySerenity.Net.Data

Adds a field of a given table alias to the ORDER BY clause.

public SqlQuery OrderBy(IAlias alias, string fieldName, bool desc = false)
parameter description
alias A table alias that will be prepended to the field name with "." between
fieldName A field name of the aliased table.
desc True to add " DESC" keyword to the expression.

Return Value

The query itself.

See Also