MVVM: ado.net entity framework and model
2 answers
You can of course use the entity data model as a model part of the MVVM pattern.
You might have a look at the WPF Application Framework (WAF) sample BookLibrary .
This MVVM sample uses Entity Framework Data Models and is composed of various Views (UserControls).
+3
a source to share
as i understand it is possible to use entity model. but you have finally tied the entity framework relationship. when you plan to exchange your model eg. with a different ORM, you have more work to do to replace the model.
it is better to use the repository pattern for data access. with this template you have more flexibility at the end. similar question here
+1
a source to share