教义查询WHERE IN - 多对多

时间:2016-05-07 17:07:14

标签: php symfony doctrine-orm

我正在Symfony2建立一个酒店网站。每家酒店都可以提供许多董事会基础选择,如自助餐,全包等。

在我的搜索表单上,用户可以按照所有常用字段进行过滤,例如位置,价格,星级和电路板基础。董事会基础是一个多选复选框。

当用户选择多个电路板基础选项时,我目前正在以这种方式处理它......(这会引发错误)

$repo = $this->getDoctrine()->getRepository("AppBundle:Accommodation");

$data = $form->getData();

$qb = $repo->createQueryBuilder("a")
        ->innerJoin("AppBundle:BoardType", "b")
        ->where("a.destination = :destination")
        ->setParameter("destination", $data['destination'])
        ->andWhere("a.status = 'publish'");

if (count($data['boardBasis']) > 0) {
    $ids = array_map(function($boardBasis) {
        return $boardBasis->getId();
    }, $data['boardBasis']->toArray());

    $qb->andWhere($qb->expr()->in("a.boardBasis", ":ids"))
        ->setParameter("ids", $ids);
}

以下是酒店实体的财产声明

/**
 * @ORM\ManyToMany(targetEntity="BoardType")
 * @ORM\JoinTable(name="accommodation_board_type",
 *      joinColumns={@ORM\JoinColumn(name="accommodation_id", referencedColumnName="id")},
 *      inverseJoinColumns={@ORM\JoinColumn(name="board_type_id", referencedColumnName="id")}
 *      )
 */
private $boardBasis;

我目前得到的错误是:

  

[语义错误]第0行,第177页附近' boardBasis I':错误:无效的PathExpression。期望StateFieldPathExpression或SingleValuedAssociationField。

提交表单并在我获得的电路板类型上使用var_dump

object(Doctrine\Common\Collections\ArrayCollection)[3043]
  private 'elements' => 
    array (size=2)
      0 => 
        object(AppBundle\Entity\BoardType)[1860]
          protected 'shortCode' => string 'AI' (length=2)
          protected 'id' => int 1
          protected 'name' => string 'All-Inclusive' (length=13)
          protected 'description' => null
          protected 'slug' => string 'all-inclusive' (length=13)
          protected 'created' => 
            object(DateTime)[1858]
              ...
          protected 'updated' => 
            object(DateTime)[1863]
              ...
      1 => 
        object(AppBundle\Entity\BoardType)[1869]
          protected 'shortCode' => string 'BB' (length=2)
          protected 'id' => int 2
          protected 'name' => string 'Bed & Breakfast' (length=15)
          protected 'description' => null
          protected 'slug' => string 'bed-breakfast' (length=13)
          protected 'created' => 
            object(DateTime)[1867]
              ...
          protected 'updated' => 
            object(DateTime)[1868]
              ...

我似乎找不到这个查询的正确语法,我过去做了几次(每次都很痛苦),但我不记得它是如何完成的。我试过没有映射ID,直接传递ArrayCollection

目前我唯一能想到的就是将其切换为使用createQuery并使用DQL,看看是否有任何区别。

对此问题的任何帮助将不胜感激,谢谢

1 个答案:

答案 0 :(得分:3)

在我看来,你加入并不完全。您错过了一个描述要加入的字段的声明:

$qb = $repo->createQueryBuilder("a")
    ->innerJoin("AppBundle:BoardType", "b")
    ->where("a.boardBasis = b.id")
    ...

或者你可以这样加入:

$qb = $repo->createQueryBuilder("a")
    ->innerJoin("a.boardBasis", "b")
    ...

然后您可以像这样添加WHERE IN语句:

$qb->andWhere('b.id IN (:ids)')
    ->setParameter('ids', $ids);