This question is locked. New answers and comments are not allowed.
Is there any good documentation for how to deal with concurrency for entities where you need more fine grained control over the concurrency? I have been looking at the documentation and searching for it, but the only stuff I can find is related to the ORM Classic, which I am not using.
I can see in the entity modeller tool there is a 'ConcurrencyMode' field which has a bunch of different values but it is not clear what each of those values means or how they work in practice?
More specifically, is there a way to specify the concurrency mode on individual members of an entity, like you can in Entity Framework? I would like to be able to specify that only certain members of an entity are involved in concurrency control, so that optimisitic concurrency will be used for all the other members, just not the members I need to protect?
I can see in the entity modeller tool there is a 'ConcurrencyMode' field which has a bunch of different values but it is not clear what each of those values means or how they work in practice?
More specifically, is there a way to specify the concurrency mode on individual members of an entity, like you can in Entity Framework? I would like to be able to specify that only certain members of an entity are involved in concurrency control, so that optimisitic concurrency will be used for all the other members, just not the members I need to protect?