Class AbpUnitOfWorkOptions
Inheritance
object
AbpUnitOfWorkOptions
Implements
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Uow
Assembly: Volo.Abp.Uow.dll
Syntax
public class AbpUnitOfWorkOptions : IAbpUnitOfWorkOptions
Constructors
AbpUnitOfWorkOptions()
Declaration
public AbpUnitOfWorkOptions()
AbpUnitOfWorkOptions(bool, IsolationLevel?, int?)
Declaration
public AbpUnitOfWorkOptions(bool isTransactional = false, IsolationLevel? isolationLevel = null, int? timeout = null)
Parameters
Type | Name | Description |
---|---|---|
bool | isTransactional | |
System.Data.IsolationLevel? | isolationLevel | |
int? | timeout |
Properties
IsolationLevel
Declaration
public IsolationLevel? IsolationLevel { get; set; }
Property Value
Type | Description |
---|---|
System.Data.IsolationLevel? |
IsTransactional
Declaration
public bool IsTransactional { get; set; }
Property Value
Type | Description |
---|---|
bool |
Timeout
Declaration
public int? Timeout { get; set; }
Property Value
Type | Description |
---|---|
int? |
Methods
Clone()
Declaration
public AbpUnitOfWorkOptions Clone()
Returns
Type | Description |
---|---|
AbpUnitOfWorkOptions |