offset method

Query<(Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)> offset(
  1. int offset
)

Offset Query using OFFSET clause.

The resulting Query will skip the first offset rows.

Implementation

Query<
  (Expr<A>, Expr<B>, Expr<C>, Expr<D>, Expr<E>, Expr<F>, Expr<G>, Expr<H>)
>
offset(int offset) =>
    Query._(_context, _expressions, (e) => OffsetClause._(_from(e), offset));