WHERE IN을 교리 2와 함께 사용하는 방법
나에게 오류를 제공하는 다음 코드가 있습니다. 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'))); } …