limit method
Limit the number of rows returned
Limits the result with the specified count.
count
: The maximum number of rows to return.
Implementation
SupaLimitModifier<B, R> limit(int count) => SupaLimitModifier(count, null);
Limits the result with the specified count.
count
: The maximum number of rows to return.
SupaLimitModifier<B, R> limit(int count) => SupaLimitModifier(count, null);