ZF2 Doctrine - 使用查询构建器如何指向存储库中的自定义方法

时间:2015-08-28 15:51:26

标签: php zend-framework2 doctrine

我正在努力解决这个问题并希望有人能够提供帮助。使用ZF2和Doctrine构建webapp我正在尝试使用Doctrine的查询构建器在我的实体文件中使用自定义方法来构建查询。对于简单示例实体文件如下(为清楚起见缩短):

/**
 * Get firstName
 *
 * @return string 
 */
public function getFirstName()
{
    return $this->firstName;
}

/**
 * Get lastName
 *
 * @return string 
 */
public function getLastName()
{
    return $this->lastName;
}
public function getFullName()
{
    return $this->getFirstName() . ' ' . $this->getLastName();
}

因此,名字和姓氏直接映射到dB列,getFullName是实体文件中的自定义方法。然后使用自定义存储库扩展实体以进行查询,我想使用getFullName方法。我在存储库中有以下内容(扩展了实体文件):

$qb = $this->_em->createQueryBuilder();
$qb->select('employee')
    ->from('Application\Entity\Employee', 'employee')
    ->andWhere('employee.fullName = :foo')
    ->setParameter('foo', 'Joe Bloggs');

$query = $qb->getQuery();

我希望在andWhere语句中它会转换employee.fullName以找到getFullName方法,但它看起来不是。有人有什么想法吗?

谢谢 詹姆斯

1 个答案:

答案 0 :(得分:2)

简单的答案是:“你做不到!”。 getFullName方法与学说无关,因为它只存在于模型中。

模拟所需内容的最简单方法是将名称拆分为部分并使用它:

$fullName = 'Joe Bloggs';
list($firstName, $lastName) = explode(' ', $fullName);
$qb = $this->_em->createQueryBuilder();
$qb->select('employee')
    ->from('Application\Entity\Employee', 'employee')
    ->andWhere('employee.firstName = :first')
    ->andWhere('employee.lastName = :last')
    ->setParameter('first', $firstName)
    ->setParameter('last', $lastName);

$query = $qb->getQuery();