I want my UI that is basically purely built on data-binding to refresh when I call ClearChange()
or Refresh(RefreshMode.OverwriteChangesFromStore,obj)
. However it looks like the backing fields are used directly by DataAccess instead of the properties they are backing as the setters are not accessed yet the object's properties do indeed get reverted back.
Is there a way to tell DataAccess to use the properties instead so PropertyChanged
is called within the setter?
Possibly any other solution? Nothing efficient comes to my mind