在SF2中使用Doctrine“createQueryBuilder”进行INNER JOIN

时间:2015-01-07 14:41:02

标签: php mysql symfony doctrine-orm doctrine

我在使用CreateQueryBuilder创建SQL查询时遇到问题。

我有两张桌子:

  • 文章,其中包含字段:articleID (PK), tag, created, userID (FK)
  • articlelocale ,其中包含字段:articlelocaleID (PK), articleID (FK), title, body, locale, translated

在我的articlelocale表中,我有一个链接到我的文章表的FK。

现在我想从文章表开始选择locale == ...(来自articlelocale表)。

这是我的开始,但我无法弄清楚:

$a = $this->createQueryBuilder('a')
    ->select('a')
    ->innerJoin('a.articleid', 'ai', 'WITH', 'ai.articleid = :articleid')
    ->where('ai.locale = :locale')
    ->setParameter('locale', $locale)
    ->addOrderBy('a.created', 'DESC');

我尝试的越多,我得到的错误就越多......我做错了什么?

更新

感谢您的帮助!我已将此添加到我的文章实体中:

/**
 * @ORM\OneToMany(targetEntity="DX\MurisBundle\Entity\Articlelocale", mappedBy="articleid", cascade={"persist", "remove", "merge"}, orphanRemoval=true)
 */
protected $articlelocale;

/**
 * Set articlelocale
 *
 * @param \DX\MurisBundle\Entity\Articlelocale $articlelocale
 * @return Articlelocale
 */
public function setArticlelocale(\DX\MurisBundle\Entity\Articlelocale $articlelocale = null)
{
    $this->articlelocale = $articlelocale;

    return $this;
}

/**
 * Get articlelocale
 *
 * @return \DX\MurisBundle\Entity\Articlelocale
 */
public function getArticlelocale()
{
    return $this->articlelocale;
}

这是我的Articlelocale实体中Article<->ArticleLocale之间的关系:

/**
 * @var \DX\MurisBundle\Entity\Article
 *
 * @ORM\ManyToOne(targetEntity="DX\MurisBundle\Entity\Article")
 * @ORM\JoinColumns({
 *   @ORM\JoinColumn(name="articleID", referencedColumnName="articleID")
 * })
 */
private $articleid;

这是我的ArticleRepository中的查询:

$a = $this->createQueryBuilder('a')
     ->select('a')
     ->innerJoin('a.articlelocale', 'ai')
     ->where('ai.locale = :locale')
     ->setParameter('locale', $locale)
     ->addOrderBy('a.created', 'DESC');

if (false === is_null($limit))
    $a->setMaxResults($limit);

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

我没有收到任何错误,但是当我想循环浏览我的文章并获得这样的ArticleLocale时:

$articles = $em->getRepository('MurisBundle:Article')->getLatestArticles(null, $locale);

foreach($articles as $article)
{
    dump($article->getArticlelocale()); die;
}

结果是PersistentCollection ...... enter image description here

我想有一个实际的Articlelocale对象..我做错了什么?

这不是一个大问题,但我也得到了NL和EN,但我过滤了“locale == nl&#39;”。但我仍然得到两个结果。

2 个答案:

答案 0 :(得分:1)

在处理doctrine时你不能直接使用表列名称你必须编写DQL它与SQL的区别你已经使用了在你的实体中定义的属性名称,连接部分应该具有指向你的第二个实体的属性然后你可以创建您的查询

$DM = $this->getDoctrine()->getManager();
$DM->createQueryBuilder('ar')
    ->select('ar')
    ->from('Namespace\YourBundle\Entity\Article','ar')
    ->innerJoin('ar.articlelocale', 'lo')
    ->where('lo.locale = :locale')
    ->setParameter(':locale', $locale)
    ->orderBy('ar.created', 'DESC');

在您的文章中,实体应该与Articlelocale实体建立关系,例如

/**
 * @ORM\OneToMany(targetEntity="\Namespace\YourBundle\Entity\Articlelocale", mappedBy="article", cascade={"persist", "remove", "merge"}, orphanRemoval=true)
 */
protected $articlelocale;

您的Articlelocale实体应该指向Article实体,如下所示

/**
 * @var \Namespace\YourBundle\Entity\Article
 *
 * @ORM\ManyToOne(targetEntity="Namespace\YourBundle\Entity\Article")
 * @ORM\JoinColumns({
 *   @ORM\JoinColumn(name="articleID", referencedColumnName="articleID")
 * })
 */
protected $article;

还为上述属性生成getters ans setter

编辑另一种将查询重写为

的方法
$article= $this->getDoctrine()->getRepository('Namespace\YourBundle\Entity\Article');
$article->createQueryBuilder('ar')
    ->select('ar')
    ->innerJoin('ar.articlelocale', 'lo')
    ->where('lo.locale = :locale')
    ->setParameter(':locale', $locale)
    ->orderBy('ar.created', 'DESC')
    ->getQuery()
    ->getResult();

答案 1 :(得分:0)

在ArticleRepository中:

$query = $this->createQueryBuilder('a')
    ->select('a')
    ->innerJoin('a.articlesLocale', 'al')
    ->where('al.articleLocaleId = :localeId')
    ->setParameter('localeId', $locale)
    ->addOrderBy('a.created', 'DESC');

您的实体应如下所示:

class Article
{
    private $articleId;

    /**
     * @var Article
     *
     * @ORM\OneToMany(targetEntity="path\to\ArticleLocale", mappedBy="article")
     */
    private $articlesLocale;

    /**
     * @return integer
     */
    public function getArticleId()
    {
        return $this->articleId;
    }

    /**
     * @return ArticleLocale
     */
    public function getLocale(){
        return $this->locale;
    }

    /**
     * @param ArticleLocale $locale
     */
    public function setLocale($locale){
        return $this->locale = $locale;
    }

}

class ArticleLocale
{
    private $articleLocaleId;

    /**
     * @var ArticleLocale
     *
     * @ORM\ManyToOne(targetEntity="path\to\Article", inversedBy="articlesLocale")
     * @ORM\JoinColumns({
     *   @ORM\JoinColumn(name="article_id", referencedColumnName="articleId", nullable=false)
     * })
     */
    private $article;

    /**
     * @return integer
     */
    public function getArticleLocaleId()
    {
        return $this->articleLocaleId;
    }

    /**
     * @return Article
     */
    public function getArticles(){
        return $this->articles;
    }

}