Should return an SQLSelectOrderByFields object containing the list
of fields the collection will be sorted by. Just as with an SQL statement, the
order of the fields added to the collection indicates the group sorting. If
DatabaseObjects.TableJoins has been implemented then fields from the adjoining
table or tables can be utilized. The sort order is used by the ObjectByOrdinal,
ObjectByOrdinalFirst and ObjectsSearch functions.
Should return Nothing if no ordering is required.
Implementing this function is optional.
Namespace: DatabaseObjectsAssembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0
Syntax
C# |
---|
protected virtual SQLSelectOrderByFields OrderBy() |
Visual Basic |
---|
Protected Overridable Function OrderBy As SQLSelectOrderByFields |
Visual C++ |
---|
protected: virtual SQLSelectOrderByFields^ OrderBy() |
Return Value
[Missing <returns> documentation for "M:DatabaseObjects.DatabaseObjects.OrderBy"]
Implements
IDatabaseObjects..::..OrderBy()()()()Examples
CopyC#
Protected Overrides Function OrderBy() As SQL.SQLSelectOrderByFields
OrderBy = New SQL.SQLSelectOrderByFields
OrderBy.Add("ProductCode", SQL.OrderBy.Ascending)
End Function