defaultOrderByFormatter function
The default formatter for the ORDER BY clause.
Implementation
String defaultOrderByFormatter(List<OrderByElement> orderBy) =>
orderBy.map(orderByElementToSql).join(', ');
The default formatter for the ORDER BY clause.
String defaultOrderByFormatter(List<OrderByElement> orderBy) =>
orderBy.map(orderByElementToSql).join(', ');