/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/Persistence/MassTransit.EntityFrameworkCoreIntegration/EntityFrameworkOutboxOptions.cs
14 строк
447 B
Chris Patterson
Changed the InboxCleanupService and OutboxDeliveryService registrations and configuration order to work properly
06 сен 2025, 16:54
06 сен 2025, 16:54
89468e3
Код
Авторство
О чём код?
namespace MassTransit { using System.Data; using EntityFrameworkCoreIntegration; using Microsoft.EntityFrameworkCore; public class EntityFrameworkOutboxOptions<TDbContext> where TDbContext : DbContext { public IsolationLevel IsolationLevel { get; set; } = IsolationLevel.RepeatableRead; public ILockStatementProvider LockStatementProvider { get; set; } = new SqlServerLockStatementProvider(); } }