在 NHibernate 中急切加载一棵树
我在尝试加载树时遇到问题,这是我的情况,我有一个与自身关联的实体(层次结构),具有 n 个级别;问题是,我可以使用 ICriteria 或 HQL 急切地加载整个树吗?
预先感谢您的任何帮助。 爱丽儿
I have a problem trying to load a tree, this is my case, I have an entity associated with itself (Hierarchic) with n levels; the question is, Can I load eagerly the entire tree using ICriteria or HQL?
Thanks in advance for any help.
Ariel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的...只需设置正确的获取模式即可。
我将在一分钟内提供示例。
示例取自此处 =>
您也可以指定急切加载子级的子级=>
如果您使用 Linq to NHibernate,请使用 Expand 方法 =>
我建议使用辅助方法从传入的 lambda 表达式创建字符串。
很可能可以告诉 Criteria 加载整棵树。但我不知道这一点,我更喜欢指定我到底需要什么(加载所有内容似乎很危险)。
这个 有帮助吗?
Yes... just set correct fetchmode.
i'll include example in a minute.
Example taken from here =>
You can specify to eager load child of child too =>
In case you are using Linq to NHibernate, use Expand method =>
And i would recommend to use helper method that creates string from passed in lambda expression.
Quite likely that it's possible to tell Criteria to load whole tree. But i'm not aware about that and i prefer specifying what exactly i need (seems dangerous to load everything).
Does this helps?