/**
  * Sets the maximum number of results the current query may
  * return.
  * @param  integer $qty
  * @return QueriableEntity
  */
 public function limit($qty)
 {
     $this->reloadQueryAdapter();
     $this->activeQuery->limit($qty);
     return $this;
 }