/
dundich
/
sa
Обзор
Документация
Войти
/
dundich
/
sa
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Sa.Partitional.PostgreSql/Cache/Setup.cs
21 строка
646 B
dundich
Pg outbox to aot (#2)
26 мар 2025, 22:03
Не верифицирован
26 мар 2025, 22:03
d1fa83b
Код
Авторство
О чём код?
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; namespace Sa.Partitional.PostgreSql.Cache; internal static class Setup { public static IServiceCollection AddPartCache(this IServiceCollection services, Action<IServiceProvider, PartCacheSettings>? configure = null) { services.AddTransient<PartCacheSettings>(sp => { PartCacheSettings cacheSettings = new(); configure?.Invoke(sp, cacheSettings); return cacheSettings; }); services.TryAddSingleton<IPartCache, PartCache>(); return services; } }