limit method

LCQuery<T> limit(
  1. int amount
)

Sets the limit of the number of results to return.

The default limit is 100, with a maximum of 1000 results being returned at a time.

Implementation

LCQuery<T> limit(int amount) {
  condition.limit = amount;
  return this;
}