select method

SimpleSelectStatement<Tbl, Row> select({
  1. bool distinct = false,
})

Composes a SELECT statement on the captured table or view.

This is equivalent to calling DatabaseConnectionUser.select.

Implementation

SimpleSelectStatement<Tbl, Row> select({bool distinct = false}) {
  return attachedDatabase.select(this, distinct: distinct);
}