Just need a hand understanding some simple database queries in ZF2. In ZF1 I have simple methods like this:
public function recordset()
{
// listing of all reco
After long search I handel my SQL Query in ZF2 that way
$sql = new \Zend\Db\Sql\Sql($this->tableGateway->getAdapter());
$select = $sql->select();
$select->from('table');
$select->columns(array('*'));
$select->join("join table", "table.id = join table.id", array("*"), "left");
$statement = $sql->prepareStatementForSqlObject($select);
$results = $statement->execute();
return iterator_to_array($results));
The trick is the PHP function iterator_to_array