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