1
我想設置兩個參數$type
和$superior
在我的查詢生成器設置在查詢生成器的symfony
$qb->select('a')
->from('xxxBundle:entity', 'a')
->where('a.typepro = :type')
->andwhere('a.superior=: superior')
->setParameter('type', $type)
->setParameter ('superior',$superior);
兩個參數,但我沒能得到相應的結果,我也得到了以下異常:
參數格式無效,:給定,但:或?預期。
任何想法?