limit method

DbQueryBuilder<T> limit(
  1. int n
)

Implementation

DbQueryBuilder<T> limit(int n) {
  _limitVal = n;
  return this;
}