What event is available to capture a change to a dynamic property? I need to do something whenever a dynamic property is changed, but there seems to be no event that would fire in that instance.
One solution:
Bind this event:
PageDB.BeforeSavingProperty += BeforeSavingProperty protected void BeforeSavingProperty(object sender, PropertyEventArgs e) { if(e.Property.IsDynamicProperty) //Do stuff }
What event is available to capture a change to a dynamic property? I need to do something whenever a dynamic property is changed, but there seems to be no event that would fire in that instance.