using System; using System.Threading; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Storage; namespace VNLib.Plugins.Extensions.Data { public abstract class TransactionalDbContext : DbContext, IAsyncDisposable, IDisposable { /// /// /// protected TransactionalDbContext() {} /// /// /// protected TransactionalDbContext(DbContextOptions options) : base(options) {} /// /// The transaction that was opened on the current context /// public IDbContextTransaction? Transaction { get; set; } /// public override void Dispose() { //dispose the transaction this.Transaction?.Dispose(); base.Dispose(); } /// /// Opens a single transaction on the current context. If a transaction is already open, /// it is disposed and a new transaction is begun. /// public async Task OpenTransactionAsync(CancellationToken cancellationToken = default) { //open a new transaction on the current database this.Transaction = await base.Database.BeginTransactionAsync(cancellationToken); } /// /// Invokes the on the current context /// public Task CommitTransactionAsync(CancellationToken token = default) { return Transaction != null ? Transaction.CommitAsync(token) : Task.CompletedTask; } /// /// Invokes the on the current context /// public Task RollbackTransctionAsync(CancellationToken token = default) { return Transaction != null ? Transaction.RollbackAsync(token) : Task.CompletedTask; } /// public override async ValueTask DisposeAsync() { //If transaction has been created, dispose the transaction if(this.Transaction != null) { await this.Transaction.DisposeAsync(); } await base.DisposeAsync(); GC.SuppressFinalize(this); } } }