在 ASP.NET MVC 应用程序中使用静态存储库的优点和缺点
在 ASP.NET MVC 应用程序中使用静态存储库的优点和缺点是什么?
让所有的方法一直可用不是更好吗 ->意味着类 get 仅实例化一次,而不是让多个控制器引用同一存储库类及其方法?
或者我在这里弄错了什么?
非常感谢所有帮助!
What are the pros and cons of using static repositories in an ASP.NET MVC application?
Wouldn't it be better to have all the methods available all the time -> means that the class get's instantiated only once instead of having multiple controllers referencing to the same repository class and its methods?
Or do I get something wrong here?
All help is more than appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
优点:
缺点:
备注:不应该在每个请求上实例化存储库视为性能问题。
Pros:
Cons:
Remark: Instantiating the repository on every request shouldn't be regarded as a performance issue.