Class DiskStorageOptions
- Namespace
- JobFlow.Core.Infrastructure.Storage.Disk
- Assembly
- JobFlow.Core.dll
public class DiskStorageOptions : StorageOptions
- Inheritance
-
objectDiskStorageOptions
- Inherited Members
- Extension Methods
Properties
EnableUpdateConcurrencyChecks
Gets or sets a value indicating whether update concurrency checks are enabled when saving changes to the database.
public bool EnableUpdateConcurrencyChecks { get; set; }
Property Value
Remarks
When set to true, the context will detect and handle concurrency conflicts during update operations. This is useful in scenarios where multiple users may attempt to modify the same data simultaneously, helping to prevent unintentional data overwrites.
Note that when disabling the checks here, concurrency checks can be enabled via the UseDocumentUpdateTransaction setting instead, if concurrency is known to be an issue.