存储库模式和视图模型模式之间的区别

发布于 2024-08-26 11:53:22 字数 133 浏览 5 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一曲爱恨情仇 2024-09-02 11:53:23

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.

回心转意 2024-09-02 11:53:23

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文