How can I get a list of dirty fields after I have saved an entity?
I Could not find a method like this:
AEntity.:GetDirtyFields();
I can only specify the field is dirty or not one by one by using like this:
AEntity.FieldName.IsDirty
But if i have many fields?
Can you help me about this subject.