ASP.NET MVC AsyncController 与 NHibernate 一起
我在每个视图打开会话的方法中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,您应该修改打开会话并在操作之后立即关闭会话的代码,以便在
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.