Hi,
I have a class coming from EntityFramework which I have extended with a few properties in a partial class. I expose and edit the values of these properties in my interface and everything works fine. But, I want to detect the change of value in the properties in my ViewModel, and while investigating the EntityState, HasChanges, HasPropertyChanges Properties on my collection they are all unmodified or false?! Even though I can see that the value of my properties has changed...
So, do I have to do anything special on my partial class for it to update the HasChanges, HasPropertychanges flag or the EntityState? Is dependency properties a more correct way to do this?
Using: MVVM, SL4, EF, WCF RIA Services.