ASP.Net MVC 的 RhinoCommons UnitOfWork 问题
我正在使用 RhinoCommons 和 NHibernate,并且有一个关于 UnitOfWork 模式的问题。
抱歉,如果这是一个n00b问题。
UnitOfWork 是否应该在最高级别(即控制器)启动? 或者说在控制器正在调用的服务模块中?
I'm playing around with RhinoCommons and NHibernate and I had a question about the UnitOfWork pattern.
Sorry if this is a n00b question.
Should the UnitOfWork be started at the very highest level (ie the controller)? Or say in the service module that the controller is calling down into?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用工作单元应用程序。 具体方法如下。
Use UnitOfWorkApplication. Here's how.
我认为工作单元必须是一个服务设施,而不是控制器职责的一部分。
I think the UnitOfWork must be a service facility and not part of the Controller responsabilities.