select<S> method

Query<S, F> select<S>(
  1. Selection<S> selection(
    1. F
    )
)

Chooses the SQL columns and result type to decode.

Implementation

Query<S, F> select<S>(Selection<S> Function(F) selection) =>
    Query.internal(database, queryFields, queryState, selection(queryFields));