Are there any examples / tutorials / information on more complex business applications? There is a lot of information about understanding PRISM, MEF, MVVM, Entity Framework, common repositories, mechanics behind the prism and other MVVM infrastructures such as regions, navigation, etc.
I know how to connect to a database and switch views and create a basic application.
so at this moment I have a DataGrid with a list of my database objects. Let's say that at this moment I even have templates, and all this looks good for viewing.
How do you implement the last part of this to perform CRUD operations. Is it better to edit directly in the DataGrid and have update / add / delete buttons? Should it be updated when the line changes? What if I want a custom modal view to show for editing / adding data? What is the best practice for actual data manipulation?
Are there any examples of the PRISM / MVVM / Entity Framework application that you can run and actually view / edit / delete records in the database?
All the examples that I found do not specify how / why you should implement the final implementation of the data.
Quote from another answer on a similar question:
The samples included in PRISM cover everything you need. In addition, PRISM concerns the composition of the user interface, access to data is beyond the scope.
My question is how to access data using PRISM, modal viewing, edit directly in the grid, etc.
Samples do not cover everything that I need, if in one sample there was a window listing the data in the database and providing the CRUD functions, then this will be true. Are there any patterns that show how this all works together?