コード例 #1
0
 /**
  * Execute the query as a "select" statement.
  *
  * @param  array  $columns
  * @return \Database\ORM\Collection|static[]
  */
 public function get($columns = array('*'))
 {
     $models = $this->getModels($columns);
     if (count($models) > 0) {
         $models = $this->eagerLoadRelations($models);
     }
     return $this->model->newCollection($models);
 }