My apologies if this is a newb question. If so please point me at the relevant URL.
Version: Devforce Silverlight v6.0.3.1
I have an entity that has a property that, if empty, needs to be populated with a default value that can be generated from one of the other properties. To do that I have both an AfterGet and BeforeSet defined for it.
In my Silverlight app I can see the default value in the DataGrid, so I can tell that the AfterGet is working. However, this value is not being persisted back to the datastore. If I manually edit this value (or change one of the other properties in the row) so that the RwoEditEnded event is fired, even then the value does not get persisted, although any other value that I've edited does.
What am I missing?
Do I need to 'dirty' the property in some way?