hello-shop/libraries/HelloShop.EventBus.Logging/ResilientTransaction.cs
2025-03-28 22:27:12 +08:00

24 lines
775 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
using Microsoft.EntityFrameworkCore;
namespace HelloShop.EventBus.Logging
{
public class ResilientTransaction(DbContext dbContext)
{
public static ResilientTransaction New(DbContext context) => new(context);
public async Task ExecuteAsync(Func<Task> action)
{
var strategy = dbContext.Database.CreateExecutionStrategy();
await strategy.ExecuteAsync(async () =>
{
await using var transaction = await dbContext.Database.BeginTransactionAsync();
await action();
await transaction.CommitAsync();
});
}
}
}