// Order by name ascending
User.findAll({ order: [asc('name')] })
// SQL: ORDER BY name ASC
// Multiple order conditions
User.findAll({ order: [asc('name'), desc('createdAt')] })
// Equivalent using the SortDirection enum directly (no helper function)
import { SortDirection } from 'prorm';
User.findAll({ order: [['name', SortDirection.ASC]] })
Create an ascending order expression SQL: ORDER BY field ASC