Should I support the Timestamp property in my Model classes to enable optimistic concurrency for updating and deleting data? If I do not use such an attribute, will EF throw a concurrency exception at runtime or not?
Is it necessary to enable concurrency processing?
[Timestamp] public byte[] RowVersion { get; set; }
concurrency entity-framework
Sampath
source share