存储库模式和视图模型模式之间的区别
我正在尝试使用 ASP MVC 框架创建一个网站。一些文档使用 IRepository 模式来抽象发送到视图进行渲染的信息,而其他文档则建议使用 ViewModel(如 MVVC 中)。
有什么区别?
这些不是同一个概念吗?
I am trying to create a site using the ASP MVC Framework. Some of the documentation use the IRepository pattern to abstract the information being sent to the view for rendering, while others recommend using a ViewModel (as in MVVC).
What is the difference?
Aren't these the same concept?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Repository 模式更多地涉及如何从数据库中保存和检索数据,而 ViewModel 模式是一种 UI 模式,定义如何将数据绑定到 UI。一个是数据库级别的,一个是 UI 级别的,所以它们在这方面是完全不同的。
阅读此了解存储库模式,并且阅读本文了解 MVVM。
The Repository pattern has more to do with how data is persisted and retrieved from the database, while the ViewModel pattern is a UI pattern that defines how to bind data to the UI. One is at the database level, while one is at the UI level, so they're completely different in that way.
Read this for Repository Pattern, and read this for MVVM.
Repository 和 ViewModel 模式完美地协同工作:ViewModel 可以访问 Repository,并且 View 绑定到 ViewModel。
存储库->视图模型-> View
一些示例可能会跳过 ViewModel 部分,但在实际应用程序中直接在 View 中使用 Repository 在关注点分离方面是一个坏主意。
The Repository and ViewModel patterns work perfectly together: the ViewModel has access to a Repository and the View is bound to ViewModel.
Repository -> ViewModel -> View
Some examples may skip the ViewModel part, but using Repository directly in the View in a real application is a bad idea in the matter of separation of concerns.