我有以下查询:
$qb = $this->em->createQueryBuilder()
->select(array('p','c' ,'sc'))
->from('Project\Entity\Product', 'p')
->innerJoin("p.category", "c")
->innerJoin("p.subcategory", "sc")
->where("p.available != 0")
->orderBy("p.create_date")
->addOrderBy("p.id")
->setMaxResults($limit);
在结果中,我想只获得具有相关实体的id的产品(类别和子类别)。
我怎样才能做到这一点?