NHibernate 无需代理获取对象

发布于 2024-08-14 13:37:55 字数 475 浏览 3 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

回忆躺在深渊里 2024-08-21 13:37:55

如果您的 Proxy 对象实现了 INhibernateProxy,您可以使用以下代码使用 NHibernate 取消代理该对象:

iAmaSession.GetSessionImplementation().PersistenceContext.Unproxy(iAmaProxy)

希望这会有所帮助!

If your Proxy object implements INhibernateProxy, you can unproxy the object with NHibernate with the following code:

iAmaSession.GetSessionImplementation().PersistenceContext.Unproxy(iAmaProxy)

Hope this helps!

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