Returns the string form of this OrderByList.


The string form of this OrderByList.

The OrderByList format is:
CopyC#
where sortdir is either ASC or DESC.

ORDER BY <i>key-sort-name1</i><i>sortdir</i>, <i>key-sort-name2</i><i>sortdir</i> ...

The string:
CopyC#
is returned if the sorting key is a property named Total
and a descending sort direction has been set.

ORDER BY Total DESC