我应该在每个方法中创建一个新的 UnitOfWork 还是拥有一个类实例?
在我的控制器类中,我应该在每个方法中创建一个新的 UnitOfWork 实例,还是应该有一个方法访问的类实例?
In my controller class, should i create a new instance of UnitOfWork in every method or should i have a class instance that the methods access?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在检查了控制器与 dispose 的行为方式之后,我的结论是这并不重要。但我认为类实例看起来更干净,因为类在每次 GET/POST 之后都会被释放。
After examining the way controllers behave with dispose, my conclusion is that it doesnt matter. But i think a class instance looks cleaner since the class gets disposed after every GET/POST.