Converts the list of Columns to a list of Orders.
List<Order> asOrderBy() { return [ for (final c in this) c is Order ? c : c.asc(), ]; }