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