我刚刚开始使用 Zend Framework 2 进行开发,但遇到了障碍。
在最简单的表达式中, fetchAll 函数起作用:
public function fetchAll()
{
$resultSet = $this->tableGateway->select();
return $resultSet;
}
但是,当我尝试通过以下方式混合加入时:
public function fetchAll()
{
$sql = new Sql($this->tableGateway->getAdapter());
$select = $sql->select();
$select->from('Entreprise')
->columns(array('id', 'nom', 'categorie_id'))
->join(array('C' => 'Categorie'), 'categorie_id = C.id', array('categorie' => 'nom'), \Zend\Db\Sql\Select::JOIN_INNER);
$resultSet = $this->tableGateway->selectWith($select);
return $resultSet;
}
结果查询是:
SELECT "Entreprise"."id" AS "id", "Entreprise"."nom" AS "nom", "Entreprise"."categorie_id" AS "categorie_id", "C"."nom" AS "categorie" FROM "Entreprise" INNER JOIN "Categorie" AS "C" ON "categorie_id" = "C"."id"
表名和列都很好,因为查询不会引发错误,而是简单地返回一个空结果集。即使删除连接并只留下以下代码也无济于事。
public function fetchAll()
{
$sql = new Sql($this->tableGateway->getAdapter());
$select = $sql->select();
$select->from('Entreprise');
$resultSet = $this->tableGateway->selectWith($select);
return $resultSet;
}
这让我相信这只是我获取适配器或实例化选择的方式有问题,但我似乎无法弄清楚或找到任何解决方案。
谁能帮我弄清楚我做错了什么?