This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project.
Helpers to work with data layers
- .NET 3.1 or more
- .NET Framework 4.6.2 or more
- .NET Standard 2.0 or more
This package is available through Nuget Packages: https://www.nuget.org/packages/PowerUtils.BuildingBlocks.Data
Nuget
Install-Package PowerUtils.BuildingBlocks.Data
.NET CLI
dotnet add package PowerUtils.BuildingBlocks.Data
public interface IUnitOfWork : IDisposable
{
Task<bool> CommitAsync(CancellationToken cancellationToken = default);
Task RollbackAsync(CancellationToken cancellationToken = default);
}
public interface IRepositoryBase { }
If you have any questions, comments, or suggestions, please open an issue or create a pull request