使用TableGateway仅在Zend Framework 2中获取一行

时间:2015-05-08 23:12:54

标签: php zend-framework2

使用TableGateway,我如何获取一行,空行,或者如果有多个行则抛出异常?

我的代码现在看起来像

public function getFabricbyName($name){
    $select = new \Zend\Db\Sql\Select();
    $select->where->equalTo('name', $name);
    $result = $this->tableGateway->selectWith($select);

    if(count($result) > 1){
        throw new \Exception("More than one result returned when expecting only one item.");
    }
    return $result;
}

然而,这似乎很乏味,我觉得我错过了Zend2的做法。我讨厌重做tablegateway已经使用的一些模式。

1 个答案:

答案 0 :(得分:3)

您可以使用$rowSet->current()只获取一行。

此外,您可以使用表网关实例来执行选择(无需创建新实例)

我会让方法看起来像这样。

public function getFabricbyName($name)
{
    $rowset  = $this->tableGateway->select(['name' => $name]);
    $current =  $rowset->current();

    if (! isset($current)) {

        throw new MyCustomNotFoundException(sprintf(
            'A fabric with name \'%s\' could not be found in \'%s\'',
            $name,
            __METHOD__
        ));
    }
    return $current;
}