原则2,不能排序

发布于 2024-12-02 12:54:55 字数 517 浏览 0 评论 0原文

我无法对我的集合进行排序,我尝试按字段对关联的连接表进行排序。

    $query = $this-em->createQueryBuilder()
            ->select('u')
            ->from('\Entities\Users', 'u')
            ->leftJoin('u.comments', 'c')
            ->orderBy('c.feat', 'ASC')
            ->addOrderBy('c.position', 'ASC')
            ->getQuery();

我对用户实体的注释包含用于连接评论表的注释:

    /** @ManyToMany(targetEntity="\Entities\Comments", mappedBy="discoverycategories")*/
protected $comments

i cant sort my collection, i tried to sort the associated joined table by a field..

    $query = $this-em->createQueryBuilder()
            ->select('u')
            ->from('\Entities\Users', 'u')
            ->leftJoin('u.comments', 'c')
            ->orderBy('c.feat', 'ASC')
            ->addOrderBy('c.position', 'ASC')
            ->getQuery();

my annotations for the users entities contains this for joining the comments table:

    /** @ManyToMany(targetEntity="\Entities\Comments", mappedBy="discoverycategories")*/
protected $comments

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟花肆意 2024-12-09 12:54:55

我认为 orderBy 方法不接受第二个参数。但你必须这样说

->orderBy('c.feat ASC')
->addOrderBy('c.position ASC')

I think that the orderBy method doesnt accept a second parameter. But you have to put it like this instead

->orderBy('c.feat ASC')
->addOrderBy('c.position ASC')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文