find_many() 공개 메소드

Tell the ORM that you are expecting multiple results from your query, and execute it. Will return an array of instances of the ORM class, or an empty array if no rows were returned.
public find_many ( ) : array | granada\ResultSet
리턴 array | granada\ResultSet
예제 #1
0
파일: Wrapper.php 프로젝트: surt/granada
 /**
  * Tell the ORM that you are expecting multiple results
  * from your query, and execute it. Will return an array
  * of instances of the ORM class, or an empty array if
  * no rows were returned.
  * @return array|\Granada\ResultSet
  */
 public function find_many()
 {
     $instances = parent::find_many();
     return $instances ? Eager::hydrate($this, $instances, self::$_config[$this->_connection_name]['return_result_sets']) : $instances;
 }