5

我有一个名为 School 的实体,它有一个 ManyToMany 关系“方法”

class School{
 /**
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 * @ORM\Column(type="integer")
 */
protected $id;

/**
 * @ORM\ManyToMany(targetEntity="Method", inversedBy="schools")
 * @ORM\JoinTable(name="lk_access_method")
 * @ORM\OrderBy({"name" = "asc"})
 */
protected $methods;
}

现在我想写一个 createQueryBuilder 按de count“方法”排序

就像是:

$schools = $this->createQueryBuilder('s')
            ->select("s")
            ->orderBy("COUNT(s.methods)")
            ->addOrderBy("s.name")
            ->setMaxResults($count)
            ->setFirstResult($pos)
            ->getQuery()
            ->getResult();

但这没有用......有人有更好的主意吗?

4

1 回答 1

12

尝试添加加入

->join('s.methods', 'm')
->orderBy("COUNT(m.id)")

编辑。

->addSelect('COUNT(m.id) as nMethods')
->join('s.methods', 'm')
->groupBy('s.id')
->orderBy("nMethods", 'DESC')
于 2013-07-23T14:53:29.017 回答