Class AbpUnitOfWorkOptions
Inheritance
System.Object
AbpUnitOfWorkOptions
Assembly: Volo.Abp.Uow.dll
Syntax
public class AbpUnitOfWorkOptions : object, IAbpUnitOfWorkOptions
Constructors
AbpUnitOfWorkOptions()
Declaration
public AbpUnitOfWorkOptions()
AbpUnitOfWorkOptions(Boolean, Nullable<IsolationLevel>, Nullable<Int32>)
Declaration
public AbpUnitOfWorkOptions(bool isTransactional = false, IsolationLevel? isolationLevel = null, int? timeout = null)
Parameters
Type |
Name |
Description |
System.Boolean |
isTransactional |
|
System.Nullable<IsolationLevel> |
isolationLevel |
|
System.Nullable<System.Int32> |
timeout |
|
Properties
IsolationLevel
Declaration
public IsolationLevel? IsolationLevel { get; set; }
Property Value
Type |
Description |
System.Nullable<IsolationLevel> |
|
IsTransactional
Declaration
public bool IsTransactional { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Timeout
Declaration
public int? Timeout { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
Methods
Clone()
Declaration
public AbpUnitOfWorkOptions Clone()
Returns
Implements
Extension Methods