Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アドレスクラスのリストを構成している人物クラスがあります。ここで、少なくとも 1 つのアドレス (ゼロ以上) を持つ Person オブジェクトのみを返す HQL を書きたいと思います。
"from Person where count(personaddressList) > 0" のようにしますか?
HQL:
from Person p where size(p.addresses) > 0
または、ドメイン クラスとの関連付けを使用している場合は、次のようになります。
if (p.getAddresses().size() > 0){ ... }