limit method

QueryBuilder limit(
  1. int n
)

Limits the number of rows returned.

Implementation

QueryBuilder limit(int n) {
  _limit = n;
  return this;
}