where method

OrderedSubQuery<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> where(
  1. Expr<bool> conditionBuilder(
    1. Expr<A> a,
    2. Expr<B> b,
    3. Expr<C> c,
    4. Expr<D> d,
    5. Expr<E> e,
    6. Expr<F> f,
    7. Expr<G> g,
    8. Expr<H> h,
    )
)

Filter OrderedSubQuery using WHERE clause.

Returns a OrderedSubQuery retaining rows from this OrderedSubQuery where the expression returned by conditionBuilder evaluates to true.

Implementation

OrderedSubQuery<
  (Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)
>
where(
  Expr<bool> Function(
    Expr<A> a,
    Expr<B> b,
    Expr<C> c,
    Expr<D> d,
    Expr<E> e,
    Expr<F> f,
    Expr<G> g,
    Expr<H> h,
  )
  conditionBuilder,
) => OrderedSubQuery._(_query.where(conditionBuilder));