limit method

SelectQuery limit(
  1. int count
)

Add LIMIT

Implementation

SelectQuery limit(int count) {
  _limit = count;
  return this;
}