Hibernate 外键标准过滤器

发布于 2024-12-19 21:35:51 字数 443 浏览 0 评论 0原文

我们可以使用条件为外键表创建深度别名吗? 例如,如果我有三个表 ABC,其中 C的外键表BBA的外键表。
我想应用类似于以下语句的过滤器:

session.createCriteria(A.class).createAlias("A.bObjectField", "alias1")
       .createAlias("alias1.cObjectField", "alias2")
       .add(Restrictions.eq("alias2.id", 1));

我可以使用条件从 A 中过滤表 C 吗?
提前致谢。

Can we create deep alias for foreign key table using criteria?
For example if I have three table A, B and C where C is foreign key table of B and B is foreign key table of A.
I want to apply filter like the following statement:

session.createCriteria(A.class).createAlias("A.bObjectField", "alias1")
       .createAlias("alias1.cObjectField", "alias2")
       .add(Restrictions.eq("alias2.id", 1));

Can I filter the table C from A using criteria?
Thanks in advance.

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

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

发布评论

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

评论(1

意犹 2024-12-26 21:35:51

是的,只要您在映射中对外键进行了建模,那就没问题。

Yes, that's no problem as long as you have modelled the foreign keys in your mappings.

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