/**
  * Sets the starting offset of the current queries result set.
  * @param  index $index
  * @return QueriableEntity
  */
 public function offset($index)
 {
     $this->reloadQueryAdapter();
     $this->activeQuery->offset($index);
     return $this;
 }