Interface IUnitOfWorkManager
Assembly: Volo.Abp.Uow.dll
Syntax
public interface IUnitOfWorkManager
Properties
Current
Declaration
IUnitOfWork? Current { get; }
Property Value
Methods
Begin(AbpUnitOfWorkOptions, bool)
Declaration
IUnitOfWork Begin(AbpUnitOfWorkOptions options, bool requiresNew = false)
Parameters
Returns
BeginReserved(string, AbpUnitOfWorkOptions)
Declaration
void BeginReserved(string reservationName, AbpUnitOfWorkOptions options)
Parameters
Reserve(string, bool)
Declaration
IUnitOfWork Reserve(string reservationName, bool requiresNew = false)
Parameters
Type |
Name |
Description |
string |
reservationName |
|
bool |
requiresNew |
|
Returns
TryBeginReserved(string, AbpUnitOfWorkOptions)
Declaration
bool TryBeginReserved(string reservationName, AbpUnitOfWorkOptions options)
Parameters
Returns
Extension Methods