TableGateway с несколькими таблицами FROM
Я хотел бы сделать простой INNER JOIN между двумя таблицами в Zend2. Конкретно, я хотел бы сделать это в Zend2: SELECT * FROM foo, bar WHERE foo.foreign_id = bar.id; У меня есть FooTable : class FooTable { protected $tableGateway; public function __construct(TableGateway $tableGateway) { $this->tableGateway = $tableGateway; } public function get($id) { $rowset = $this->tableGateway->select(function […]