Hi,
I am wondering if I would be able to track which field were updated when copying from one object to another.
For example, two objects: S (source) and D (destination)
S.fieldA = 1
S.fieldB = 2
S.fieldC = 3
D.fieldA = 1
D.fieldB = 2
D.fieldC = 5
mapper.update(S, D)
I am looking to somehow being notified that fieldC was updated (perhaps a callback, interceptor or a list of changes).
Best regards,
Daniel