select method

QueryBuilder select()

Starts the SELECT-query chain with the provided options @param options Options to use for query generation. @return QueryBuilder

Implementation

QueryBuilder select() {
  return currentQuery = Select(
    options,
    execFunc: exec,
    firstFunc: first,
    firstAsMapFuncWithMeta: firstAsMapWithMeta,
    getAsMapFuncWithMeta: getAsMapWithMeta,
    getAsMapFunc: getAsMap,
    firstAsMapFunc: firstAsMap,
    fetchAllFunc: _fetchAll,
    fetchSingleFunc: _fetchSingle,
    countFunc: _count,
  );
}