Nhibernate.ISession SaveOrUpdate 内部究竟发生了什么

发布于 2024-12-10 11:38:14 字数 146 浏览 0 评论 0原文

我在我的项目中使用 MVC、NHibernate 和 Sharp 架构。
每当我使用 SaveOrUpdate 保存对象(实体)时,也会更新子实体。但它不是更新子实体,而是为所有子实体运行DELETE-INSERT

任何帮助。

I am using MVC, NHibernate and Sharp architecture for my project.
Whenever I am saving objects(entities) using SaveOrUpdate there are child entities which are updated as well. But instead of updating child entities it runs DELETE-INSERT for all the child entities.

any help.

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

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

发布评论

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

评论(1

末骤雨初歇 2024-12-17 11:38:14

发生这种情况是因为您没有更新现有的子对象,而是替换了它们的整个集合。这使得 Nhibernate 认为它必须保存新的集合。

It happens because you are not updating existing child objects, you replace whole collection of them. That makes Nhibernate think that it has to save new collection.

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