where method
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>)> where(
Expr<bool?> Function(
Expr<A> a,
Expr<B> b,
Expr<C> c,
Expr<D> d,
Expr<E> e,
Expr<F> f,
)
conditionBuilder,
) => OrderedSubQuery._(_query.where(conditionBuilder));