Click or drag to resize
SortClauseProducers Class
Class which contains extension methods to produce sort clauses on fields / expressions.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.QuerySpecSortClauseProducers

Namespace: SD.LLBLGen.Pro.QuerySpec
Assembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax
public static class SortClauseProducers

The SortClauseProducers type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAscending(String)
Creates a sort clause for a field with the alias specified, sorting ascending
Public methodStatic memberAscending(IEntityFieldCore)
Creates an ascending sort clause for the field specified
Public methodStatic memberAscending(IExpression)
Creates an ascending sort clause for the expression specified
Public methodStatic memberCaseInsensitive
Sets the CaseSensitiveCollation flag on the sort clause specified. This will apply the UPPER() function (or db specific equivalent) to the field in the ORDER BY clause.
Public methodStatic memberDescending(String)
Creates a sort clause for a field with the alias specified, sorting descending
Public methodStatic memberDescending(IEntityFieldCore)
Creates a descending sort clause for the field specified
Public methodStatic memberDescending(IExpression)
Creates a descending sort clause for the expression specified
Top
See Also