我是 Symfony2 查询生成器的新手,这就是我所做的:
$builder
->add('access', 'entity', array(
'label' => 'Behörigheter',
'multiple' => true, // Multiple selection allowed
'expanded' => true, // Render as checkboxes
'property' => 'name', // Assuming that the entity has a "name" property
'class' => 'BizTV\ContainerManagementBundle\Entity\Container',
'query_builder' => function(\Doctrine\ORM\EntityRepository $er) use ($company) {
$qb = $er->createQueryBuilder('a');
$qb->where('a.containerType IN (:containers)', 'a.company = :company');
$qb->setParameters( array('containers' => array(1,2,3,4), 'company' => $company) );
return $qb;
}
));
它工作正常,除了我想按 containerType (这是一个关系字段,FK)对我的实体进行排序。
当我添加这一行时:
$qb->orderBy('a.containerType', 'ASC');
我得到错误:无效的路径表达式。必须是 StateFieldPathExpression。
那么这是什么 - 我可以在 where 子句中使用关系字段 containerType 但不能在我的 sort 子句中使用?还是我错过了其他东西?