ORM::find_result_set PHP Méthode

find_result_set() public méthode

Tell the ORM that you are expecting multiple results from your query, and execute it. Will return a result set object containing instances of the ORM class.
public find_result_set ( ) : IdiormResultSet
Résultat IdiormResultSet
    public function find_result_set()
    {
        return new IdiormResultSet($this->_find_many());
    }
ORM