I am using MVVM pattern in WPF to create a program.
I was peacefully implementing INPC on my model classes .... until a few days ago when I decided to use EntityFramework. Now I dont know how I can tell the EntityFramework to implement INPC on the generated entity classes and raise the property changed event every time a property changes.
Other questions such as this simply suggest to implement INPC on ViewModel, but I really want the Model classes to implement INPC to reduce the amount of work.
I am using Model-first approach to generate my model.