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