I have a MsUser table consist of 4 fields i.e. Id, Name, Address, and date-of-birth. Every update process, one or more fields can be updated simultaneously. I want to track the change every update.
Example: the updated fields are address and date-of-birth. System will show "Address and date-of-birth are updated".
From that case, how should i build the edit function in model to track the updated field each update?
I have no idea how to check the changed fields from user's input. Because if i have to loop and check each field, i think it costs too much effort for the system process.
Thank you for your helps :)