User-272643235 posted
I have four fields in my table to use for auditing:
ModifiedOn (datetime)
ModifiedBy (GUID : UserId)
CreatedOn (datetime)
CreatedBy (GUID : UserId)
I don't need to show these fields when user is inserting or updating, but I still need to save those in database.
What's the best way to do this?
Thanks!