我有两张表产品和评论,
我正在寻找使用 DQL / 使用 symfony 进行查询。
通常我可以做这样的事情:
// Get number of comment not visited per product
Select count (p.id) from Product p, Comment c where P.id = c.p_id and c.status = 0;
// Get number of comment read visited per product
Select count (p.id) from Product p, Comment c where P.id = c.p_id and c.status = 1;
但是,当我使用分页包时,我只需要在参数中传递一个查询(就像我也在使用过滤器包一样,也只需要一个查询,这样他就可以对其应用过滤器)。
任何想法!!