与Doctrine的QueryBuilder和Symfony2的许多关系

时间:2013-07-02 22:10:10

标签: php symfony doctrine-orm

在我正在处理的网站上,我需要根据用户的设置将结果限制在很多地方。这是名为Counties的用户的成员,并且是它自己的实体。我把它设置成这样:

/**
 * @ORM\Entity
 * @ORM\Table(name="county")
 */
class County
{
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @var string
     * @ORM\Column(type="string")
     */
    protected $name;

    // ... Getters and Setters
}

在我的用户实体上,我有这样的附件:

// ...

/**
 * @ORM\ManyToMany(targetEntity="App\Bundle\UserBundle\Entity\County")
 * @ORM\JoinTable(name="user_county_xref",
 *      joinColumns={@ORM\JoinColumn(name="user_id", referencedColumnName="id")},
 *      inverseJoinColumns={@ORM\JoinColumn(name="county_id", referencedColumnName="id")}
 * )
 */
protected $counties;

// ...

/**
 * Add counties
 *
 * @param \App\Bundle\UserBundle\Entity\County $counties
 * @return User
 */
public function addCountie(\App\Bundle\UserBundle\Entity\County $counties)
{
    $this->counties[] = $counties;

    return $this;
}

/**
 * Remove counties
 *
 * @param \App\Bundle\UserBundle\Entity\County $counties
 */
public function removeCountie(\App\Bundle\UserBundle\Entity\County $counties)
{
    $this->counties->removeElement($counties);
}

/**
 * Get counties
 *
 * @return \Doctrine\Common\Collections\Collection 
 */
public function getCounties()
{
    return $this->counties;
}

一切都像它应该的那样,我可以毫无问题地将用户附加给用户。

然后我有一个名为Store的第二个实体,它还附有这些县实体。我做了相同的声明,但将JoinTable名称更改为不同的名称,并将JoinColumn更改为使用store_id而不是user_id。就其本身而言,这很好用。我可以将县附加到商店。

现在,我想要做的是根据用户的县限制县。例如,如果用户在县A和B县,我只想看到A县和B县的商店。

我无法弄清楚如何使用DQL或Query Builder来做到这一点。当我尝试在Form中使用它时,这会使事情变得更糟,因为我无法使QueryBuilder语法正确,所以我无法找到一种方法来使数据限制自己。

当您以这种方式设置实体时,如何执行QueryBuilder或DQL语句?

修改

这是我试图复制的SQL语句,供参考:

SELECT S.* 
FROM store S 
JOIN store_county_xref SCX 
    ON SCX.store_id=S.id 
JOIN user_county_xref UCX 
    ON UCX.county_id=RCX.county_id 
WHERE UCX.user_id = 1 

部分问题是我不确定应该使用什么。如果我添加mappedBy或inversedBy,Doctrine会抱怨索引不存在(因为它似乎在查看实体表,而不是声明的JoinTable)。我无法加入这样的表格,因为Doctrine抱怨两个实体之间没有关联:

SELECT s 
FROM AppStoreBundle:Store s 
JOIN AppUserBundle:County c WITH c.store = s.id

这是有道理的,因为县里没有“商店”成员,因为像商店和用户这样的东西应该有县,而不是相反,因为县只是一种标签。

我甚至试过这个,认为它会起作用,但没有太多希望:

SELECT s 
FROM AppStoreBundle:Store s 
JOIN AppUserBundle:User u WITH u.counties = s.counties

我会切换到只使用直接SQL而不是DQL / QueryBuilder,但我不确定如何在表单中运行直接SQL,这是一个主要缺点。

2 个答案:

答案 0 :(得分:2)

您可以在Doctrine documentation

中找到适当声明的示例

我已在下面的代码示例中排除了其他注释

class County
{
    /**
     * @ManyToMany(targetEntity="User", mappedBy="counties")
     **/
    protected $users;
 }

 class User
 {
      /**
       * @ORM\ManyToMany(targetEntity="App\Bundle\UserBundle\Entity\County", inversedBy="users")
       * @ORM\JoinTable(name="user_county_xref",
       *      joinColumns={@ORM\JoinColumn(name="user_id", referencedColumnName="id")},
       *      inverseJoinColumns={@ORM\JoinColumn(name="county_id", referencedColumnName="id")}
       * )
       */
      protected $counties;
 }

这将是正确的注释,实体存储库中的正确查询将是

 $queryBuilder = $this->createQueryBuilder('c');

 $queryBuilder->select(array('c', 'u'))
              ->leftJoin('c.users', 'u');

 return $queryBuilder->getQuery()->getResult();

对于另一个实体应该完全相同。

答案 1 :(得分:0)

谢谢Thomas Potaire。好例子 !真的帮到了我。请参阅下面的示例queryBuilder。 string $search, int $locale的位置。

$q  = $qb->select(array('a'))
                ->from(Article::class, 'a')
                ->leftJoin('a.locales', 'l')
                ->where(
                    $qb->expr()->like('a.articleName',"'%$search%'")
                )
                ->andWhere('l.id = '.$locale)
                ->orderBy('a.id', 'DESC')
                ->getQuery();
            $articles= $q->getResult();

            if ($articles==null)
                throw new \Exception('Article with key '.$search.' not found');

ArticleLocale内知道$locales。我的项目中也有ManyToMany关系: article - > article_has_locale< - locale