aureliusdataset ModifiedFields

Hi
How to use  Aureliusdataset ModifiedFields?
Do you have any example or short description of the usage.
BR Ake Pettersson

ModifiedFields in an TEnumerable<TField>, you simply interact through that collection to check what fields were modified:



for ModifiedField in Dataset.ModifiedFields do
  // Do something with ModifiedField (TField)


Alternatively you can simply use IsModified:


if Dataset.IsModified('SomeFieldName') then



Thank you
BR Ake