ORM::find_result_set PHP Method

find_result_set() public method

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
return IdiormResultSet
    public function find_result_set()
    {
        return new IdiormResultSet($this->_find_many());
    }
ORM