QuerySingle3<A, B, C> extension
Extensions for a query returning at-most one row with 3 expressions.
- on
-
- QuerySingle<
(Expr< A> , Expr<B> , Expr<C> )>
- QuerySingle<
Properties
-
asQuery
→ Query<
(Expr< A> , Expr<B> , Expr<C> )> -
Available on QuerySingle<
Get Query with the same rows as this QuerySingle.(Expr< , provided by the QuerySingle3 extensionA> , Expr<B> , Expr<C> )>no setter
Methods
-
fetch(
) → Future< (A, B, C)?> -
Available on QuerySingle<
Query the database for the row matching this QuerySingle, if any.(Expr< , provided by the QuerySingle3 extensionA> , Expr<B> , Expr<C> )> -
fetchOrNulls(
) → Future< (A?, B?, C?)> -
Available on QuerySingle<
Query the database for the row matching this QuerySingle, if any.(Expr< , provided by the QuerySingle3 extensionA> , Expr<B> , Expr<C> )> -
select<
T extends Record> (T projectionBuilder(Expr< A> a, Expr<B> b, Expr<C> c)) → QuerySingle<T> -
Available on QuerySingle<
Create a projection of this QuerySingle using(Expr< , provided by the QuerySingle3 extensionA> , Expr<B> , Expr<C> )>SELECT
clause. -
where(
Expr< bool> conditionBuilder(Expr<A> a, Expr<B> b, Expr<C> c)) → QuerySingle<(Expr< A> , Expr<B> , Expr<C> )> -
Available on QuerySingle<
Filter QuerySingle using(Expr< , provided by the QuerySingle3 extensionA> , Expr<B> , Expr<C> )>WHERE
clause.