orderBy

infix fun orderBy(order: List<Pair<Expression<*>, SortOrder>>): InnerTableLink<SID, Source, ID, Target>

Modifies this reference to sort entities based on multiple columns as specified in order.


infix fun orderBy(order: Pair<Expression<*>, SortOrder>): InnerTableLink<SID, Source, ID, Target>

Modifies this reference to sort entities according to the specified order.


infix fun orderBy(expression: Expression<*>): InnerTableLink<SID, Source, ID, Target>

Modifies this reference to sort entities by a column specified in expression using ascending order.