As a apprentice for web development, I have no clue of preventing dirty write for web forums. Is there any food for thought? Thanks in advance!
I'm working on ASP.NET MVC and Entity Framework.
Okay, sorry for misleading. The dirty write here means overwrite changes of another person in the database. While using a Optimistic Concurrency.
To do optimistic concurrency in the EF, you:
The EF will throw OptimisticConcurrencyException when the stored value doesn't match the old value during an update.