I am trying to implement a application following the sample in this page: http://www.asp.net/entity-framework/tutorials/handling-concurrency-with-the-entity-framework-in-an-asp-
Try putting a [ConcurrencyCheck] attribute in your TimeStamp Property
public class PurchaseOrder { [ConcurrencyCheck] [Timestamp] public byte[] Timestamp {get; set;} }