我想计算我的博客中使用主题的次数。
任何博文(法语文章)都可以使用一个或多个主题。
所以我有一张桌子(ManyToMany):
themes_articles(id_theme,id_article) 并且:
主题(id_theme,nom_theme)
在SQL中,我这样做:
SELECT T.id,nom_theme,count(A.themes_id) from themes_articles A right join themes T on T.id=A.themes_id group by nom_theme
它有效,但是当我想在DQL中使用正确的连接时,它有点难。我切换了两张桌子以使用左连接,但我不知道如何在这里使用我的关系表(themes_articles)。
我试过这样的事情:
$query = $this->createQueryBuilder('')
->select(array('T.id', 'nomTheme', 'count(A.themes_id) as nombre'))
->from('themes', 'T')
->leftJoin('themes_articles', 'A', 'WITH', 'T.id= A.themes_id')
->groupBy('nom_theme');
return $query->getQuery()->getResult();
但它不起作用。
[Semantical Error] line 0, col 93 near 'themes_articles': Error: Class 'themes_articles' is not defined.
如何在DQL请求中转换我的SQL请求?
非常感谢您的帮助。
答案 0 :(得分:0)
尝试改变这个:
->leftJoin('themes_articles', 'A', 'WITH', 'T.id= A.themes_id')
到此:
->leftJoin('YourBundle:themes_articles', 'A', 'WITH', 'T.id= A.themes_id')