集合中对象属性的 where 子句

发布于 2025-01-07 16:25:14 字数 329 浏览 0 评论 0原文

简化:

Class1 {
    private Collection<Class2> items;
}

Class2 {
    private String name;
}

现在我希望能够检索 items 中具有 Class2 对象的所有 Class1 对象,其中 name类似于 'abc';

我想我必须在 HQL 中使用 elements() 函数,但还不确定如何使用属性值。

欢迎大家指点!

Simplified:

Class1 {
    private Collection<Class2> items;
}

Class2 {
    private String name;
}

Now I want to be able to retrieve all Class1 objects that have a Class2 object in items where name is like for example 'abc';

I think I have to use the elements() function in HQL, but not sure yet how to use the property values.

Any pointers are welcome!

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

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

发布评论

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

评论(1

在你怀里撒娇 2025-01-14 16:25:14

不,您只需要加入:

select c1 from Class1 c1 inner join c1.items c2 where c2.name  = 'abc'

阅读 HQL、关联和联接

No, you just need to make a join:

select c1 from Class1 c1 inner join c1.items c2 where c2.name  = 'abc'

Read the Hibernate documentation on HQL, associations and joins.

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