NHibernate 无需代理获取对象
我使用 NHibernate(2.0.1.4) 和 NHibernate.Linq(1.0.0.4) 从数据库获取 Node 类型的对象。
当我获取这些对象时,我得到的集合的最后一个对象是 Proxy 类型(因为我使用了“NHibernate.ByteCode.LinFu”),
我使用了以下 linq 查询:
var mynodes = from node in session.Linq<Node>() where ancestorNodes.Contains(node.Id) select node).ToList()
anchestorNodes 是节点对象的 Id 列表 。
结果(mynodes)的最后一个对象是 nodeProxy 类型
当我在“ancestorNodes”列表中有 3 个 id 时,我从查询中获得的 为什么它总是最后一个对象? 我该如何解决这个问题?
I am using NHibernate(2.0.1.4) with NHibernate.Linq(1.0.0.4) to get Objects of the type Node from the Database.
When I get these objects, the last object of the collection I got is of the type Proxy (because I used "NHibernate.ByteCode.LinFu"" )
I used the following linq query:
var mynodes = from node in session.Linq<Node>() where ancestorNodes.Contains(node.Id) select node).ToList()
anchestorNodes is a list of Id's for the node objects to get.
When I have 3 id's in the "ancestorNodes" list, the last object of the result (mynodes) I got from the query is of the type nodeProxy.
How could this be?
Why is it always the last object?
How can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 Proxy 对象实现了 INhibernateProxy,您可以使用以下代码使用 NHibernate 取消代理该对象:
希望这会有所帮助!
If your Proxy object implements INhibernateProxy, you can unproxy the object with NHibernate with the following code:
Hope this helps!