select<T extends Record> method
Create a projection of this OrderedSubQueryRange using SELECT clause.
The projectionBuilder must return a Record where all the
values are Expr objects. If something else is returned you will
get a OrderedSubQueryRange object which doesn't have any methods!
All methods and properties on OrderedSubQueryRange<T> are extension methods and
they are only defined for records T where all the values are
Expr objects.
Implementation
ProjectedOrderedSubQueryRange<T> select<T extends Record>(
T Function(Expr<A> a, Expr<B> b, Expr<C> c, Expr<D> d, Expr<E> e)
projectionBuilder,
) => ProjectedOrderedSubQueryRange._(_query.select(projectionBuilder));