ASP.NET MVC AsyncController 与 NHibernate 一起

发布于 2024-10-05 01:06:49 字数 189 浏览 2 评论 0原文

我在每个视图打开会话的方法中使用 nhibernate,其中会话在操作方法之前打开并在操作方法之后立即关闭。

使用 AsyncController 会破坏此模型,因为即使控制器从原始 XXXAsync 方法返回,也会执行数据操作,但它会发现空会话,而 HttpContext.Current 也为空。

有什么办法可以解决这个问题吗?

I am using nhibernate in an open session per view approach where the session opens before the action method and closes right after.

Using an AsyncController makes this model break because the controller performs data operations even when it has returned from the original XXXAsync method but it finds a null session while the HttpContext.Current is null as well.

Is there any way to fix this issue?

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

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

发布评论

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

评论(1

泛滥成性 2024-10-12 01:06:49

那么,您应该修改打开会话并在操作之后立即关闭会话的代码,以便在 XXXCompleted 操作之后将其关闭。

Well you should modify the code that opens the session and closes it right after the action so that it closes it after the XXXCompleted action.

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