查找关联集合中至少有一个指定类型实例的实例

发布于 2024-11-08 12:24:01 字数 191 浏览 0 评论 0原文

我有一个正在工作的现有域,并且无法根据关联集合中指定类型的至少一个实例来限制查询结果。

例如:

假设一个人与宠物有一对多关联。 Pet 是抽象的,有几个子类,例如 Bird、Cat、Dog 等,并使用每类表层次结构映射策略进行映射。

如何在 hql 中编写查询以返回至少有一个关联的 Dog 的所有 Person 实例?

I have an existing domain at work and haven't been able to limit the result of a query based on at least one instance of a specified type in an associated collection.

For example:

Say a Person has a one-to-many association to Pet. Pet is abstract and has several subclasses such as Bird, Cat, Dog, etc. and is mapped using the table-per-class-hierarchy mapping strategy.

How would one write a query in hql to return all the Person instances that has at least one associated Dog?

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

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

发布评论

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

评论(1

带上头具痛哭 2024-11-15 12:24:01

由于 Pets 位于“多”方,因此它们可能指向各自的 Person 实体。这意味着您可以在 Pets 表中选择 unique(Person),其中 person 不为空。由于您使用的是每类表层次结构,因此有一个鉴别器列,因此您可以区分类型,即“.class”。

String hql = "select unique(p.person) from Pet p where p.class = ? and p.person is not null"

然后使用位置参数执行查询 - 即替换 ?与狗或猫或其他什么。请注意,我编写了字段名称,因此您必须将它们替换为您的实际值。

Since the Pets are on the 'many' side, they probably point back to their respective Person entities. That means you can just select on unique(Person) in the Pets table where person is not null. Since you are using table-per-class-hierarchy, there is a discrimator column, so you can discriminate on the type, which is '.class'.

String hql = "select unique(p.person) from Pet p where p.class = ? and p.person is not null"

and then execute the query using positional parameters -- i.e. replace the ? with DOG or CAT or whatever. Note that i made up field names, so you will have to replace them with your actual values.

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