Limit Query using LIMIT clause.
LIMIT
The resulting Query will only return the first limit rows.
limit
Query<(Expr<A>,)> limit(int limit) => Query._(_context, _expressions, (e) => LimitClause._(_from(e), limit));