/**
  * Defines the direction on which the orderby() field
  * will be sorted.
  * @param  string $dir
  * @return QueriableEntity
  */
 public function direction($dir)
 {
     $this->reloadQueryAdapter();
     $this->activeQuery->direction($dir);
     return $this;
 }