MVVM:ado.net实体框架和模型

发布于 2024-09-01 00:48:23 字数 105 浏览 1 评论 0原文

我正在 wpf 中编写一个使用 MVVM 的应用程序。我想知道是否可以使用 ado.net 实体数据模型作为 MVVM 中的模型?是一样的吗?如果没有,为什么? 感谢您的任何帮助。 问候, 埃文。

I'm writing an application in wpf that uses MVVM. I wondered if I could use ado.net entity data model as a model in MVVM? Is it the same? If not, why?
Thanks for any help.
Regards,
Ev.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

甜柠檬 2024-09-08 00:48:23

当然,您可以使用实体数据模型作为 MVVM 模式的模型部分。

您可以查看 WPF 应用程序框架 (WAF) 的 BookLibrary 示例应用程序

此 MVVM 示例应用程序也使用实体框架数据模型,它由各种视图(用户控件)组成。

Sure, you can use the Entity Data Model as Model part of the MVVM Pattern.

You might have a look at the BookLibrary sample application of the WPF Application Framework (WAF).

This MVVM sample application uses Entity Framework data models as well and it is composed of various Views (UserControls).

ゞ花落谁相伴 2024-09-08 00:48:23

据我了解,可以使用实体模型。但您最终将与实体框架绑定耦合。每当您打算将模型交换为例如。使用另一个 ORM,您将需要更多工作来替换模型。

更好的方法是使用存储库模式进行数据访问。通过这种模式,您最终将拥有更大的灵活性。类似的问题此处

as I understand, one can use the entity model. but you will finally have tied coupling with the entity framework. whenever you plan to exchange your model for eg. with another ORM, you'll have more work to replace the model.

better is to use a repository pattern for data access. with this pattern you have more flexibility in the end. similar question here

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