limit method

QueryBuilder<T> limit(
  1. int limit
)

Implementation

QueryBuilder<T> limit(int limit) {
  _limit = limit;
  return this;
}