MVVM:ado.net实体框架和模型
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,您可以使用实体数据模型作为 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).
据我了解,可以使用实体模型。但您最终将与实体框架绑定耦合。每当您打算将模型交换为例如。使用另一个 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