Enum ConcurrentAccessMode
Controls behavior when concurrent access to an EntityContext is detected from different threads.
public enum ConcurrentAccessMode
Fields
Enabled = 0Permit concurrent access (which may cause bugs).
Error = 2Throw ConcurrentContextAccessException when concurrent access is detected.
Warning = 1Log a warning but allow the operation to proceed.