gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 06:33:58 24 4
gpt4 key购买 nike

我的实体是这样定义的:

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

}

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

最佳答案

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

from Entity e where e.otherEntities.size > 1

关于java - 如何在 HQL 中按列表大小选择对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7525339/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com