Should I maintain a Timestamp property on my Model classes for enable optimistic concurrency for data update and delete ? If I won't use such a attribute,whether EF will give concurrency exception at run time or not ?
Is this must for enable the concurrency handling ?
[Timestamp]
public byte[] RowVersion { get; set; }