Hello, when override AdjustFieldValue(FieldInfo field, object oldValue, object newValue) method in my entity class to modify some entity's field values before setting them, the method isn't called for the structure fields within the entity. so what should i do to force the method to be called when changing structure field or what are other solutions to do the task? thanks |
sorry, it works fine, i think the problem is that we are using reflection to set the property values and with structure types we update them directly without going through the entity it self( for example: calling SetFieldValue or call Entity.StructureProperty.field = value), and i am going to find a solution. thanks. |