Hi,
I have a scenario where it's possible to have two processes delete and update an entity at the same time.
Is there a way to ensure that, if an entity is deleted in the first process, it will not be reinserted upon SaveChanges() in the second process?
I would have thought that it would throw a ConcurrencyException in this situation, but despite several experiments, I can't make it do so :)
//Asger