TableOrViewStatements<Tbl extends HasResultSet, Row> extension
Easily-accessible methods to compose common operations or statements on tables or views.
- on
-
- ResultSetImplementation<
Tbl, Row>
- ResultSetImplementation<
Methods
-
all(
) → Selectable< Row> -
Available on ResultSetImplementation<
Selects all rows that are in this table.Tbl, Row> , provided by the TableOrViewStatements extension -
count(
{Expression< bool> where(Tbl row)?}) → Selectable<int> -
Available on ResultSetImplementation<
Counts the rows in this table.Tbl, Row> , provided by the TableOrViewStatements extension -
select(
{bool distinct = false}) → SimpleSelectStatement< Tbl, Row> -
Available on ResultSetImplementation<
Composes aTbl, Row> , provided by the TableOrViewStatements extensionSELECT
statement on the captured table or view. -
selectOnly(
{bool distinct = false}) → JoinedSelectStatement< Tbl, Row> -
Available on ResultSetImplementation<
Composes aTbl, Row> , provided by the TableOrViewStatements extensionSELECT
statement only selecting a subset of columns.