Query<T> orderBy(String? orderBy, String? dir) { if (orderBy == null || dir == null) return this; _orderBy.add(OrderBy(column: orderBy, dir: dir)); return this; }