select method
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);
}