如何在 HQL 中按列表大小选择对象?

发布于 2024-12-06 06:08:40 字数 227 浏览 0 评论 0原文

我的实体定义如下:

public class Entity implements Serializeable {
      @ManyToMany(mappedBy="entities")
      private List<OtherEntity> otherEntities;

}

如何在 HQL 中选择具有多个 OtherEntity 的所有实体?

My entity is defined like this:

public class Entity implements Serializeable {
      @ManyToMany(mappedBy="entities")
      private List<OtherEntity> otherEntities;

}

How can I select in HQL all Entities which have more than one OtherEntity?

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

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

发布评论

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

评论(1

风苍溪 2024-12-13 06:08:40

我认为这应该有效。这将生成一个带有子查询的 SQL - 不是获取它并在内存中过滤它。

from Entity e where e.otherEntities.size > 1

I think this should work. This will generate a SQL with a subquery - not fetch it and filter it in memory.

from Entity e where e.otherEntities.size > 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文