Hibernate 外键标准过滤器
我们可以使用条件为外键表创建深度别名吗? 例如,如果我有三个表 A
、B
和 C
,其中 C
是 的外键表B
和B
是A
的外键表。
我想应用类似于以下语句的过滤器:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只要您在映射中对外键进行了建模,那就没问题。
Yes, that's no problem as long as you have modelled the foreign keys in your mappings.