Table of Contents

Enum ConcurrentAccessMode

Namespace
The.Entities
Assembly
Instagile.dll

Controls behavior when concurrent access to an EntityContext is detected from different threads.

public enum ConcurrentAccessMode

Fields

Enabled = 0

Permit concurrent access (which may cause bugs).

Error = 2

Throw ConcurrentContextAccessException when concurrent access is detected.

Warning = 1

Log a warning but allow the operation to proceed.