如何在教义 2 中使用 WHERE IN

2022-08-30 06:49:23

我有以下代码给我错误:

Message: Invalid parameter number: number of bound variables does not match number of tokens 

法典:

public function getCount($ids, $outcome)
{
    if (!is_array($ids)) {
        $ids = array($ids);
    }
    $qb = $this->getEntityManager()->createQueryBuilder();
    $qb->add('select', $qb->expr()->count('r.id'))
       ->add('from', '\My\Entity\Rating r');
    if ($outcome === 'wins') { 
        $qb->add('where', $qb->expr()->in('r.winner', array('?1')));
    }
    if ($outcome === 'fails') {
        $qb->add('where', $qb->expr()->in('r.loser', array('?1')));
    }
    $qb->setParameter(1, $ids);
    $query = $qb->getQuery();
    //die('q = ' . $qb);
    return $query->getSingleScalarResult();
}

数据(或$ids):

Array
(
    [0] => 566
    [1] => 569
    [2] => 571
)

DQL 结果:

q = SELECT COUNT(r.id) FROM \My\Entity\Rating r WHERE r.winner IN('?1')

答案 1

最简单的方法是将数组本身绑定为参数:

$queryBuilder->andWhere('r.winner IN (:ids)')
             ->setParameter('ids', $ids);

答案 2

在研究这个问题时,我发现了一些对任何遇到同样问题并寻找解决方案的人来说都很重要的东西。

从原始帖子中,以下代码行:

$qb->add('where', $qb->expr()->in('r.winner', array('?1')));

将命名参数包装为数组会导致绑定参数编号问题。通过将其从其数组包装中删除:

$qb->add('where', $qb->expr()->in('r.winner', '?1'));

此问题应得到解决。这在以前版本的 Doctrine 中可能是一个问题,但在最新版本的 2.0 中已修复。


推荐