I have a scenario here: a user A makes changes to a row in database. A column UpdateStatus keeps status of that change for example, it is set to "Edited" from "Not Edited". A second user B knows about the change with the change in value of UpdateStatus column. The first time value of UpdateStatus changes is easily identified and other user is informed about it. How will the further changes to the same row will be known to the other user as the UpdatStatus column will have same value for the new change in this case "Edited".
(Note: other user only clicks to see the notification about the editing to the row. I dont want him to manually set the status of UpdateStatus column as seen or so.)
I am using c# for updating or querying database, using linq queries for my asp.net application.