/**
  * Returns a result set from the database.
  *
  * @access  public
  * @return  \mako\database\midgard\ResultSet
  */
 public function all()
 {
     if (!$this->lazy) {
         array_shift($this->wheres);
     }
     return parent::all();
 }