/
VFlov
/
NotificationService_1
Обзор
Документация
Войти
/
VFlov
/
NotificationService_1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Shared/NotificationService.Shared/Data/NotificationDbContextFactory.cs
18 строк
711 B
VFlov
first_commit
27 ноя 2025, 11:43
27 ноя 2025, 11:43
819df67
Код
Авторство
О чём код?
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace NotificationService.Shared.Data; /// <summary> /// Фабрика для создания DbContext во время дизайна (для миграций) /// </summary> public class NotificationDbContextFactory : IDesignTimeDbContextFactory<NotificationDbContext> { public NotificationDbContext CreateDbContext(string[] args) { var optionsBuilder = new DbContextOptionsBuilder<NotificationDbContext>(); optionsBuilder.UseNpgsql("Host=localhost;Port=5432;Database=notifications;Username=postgres;Password=postgres"); return new NotificationDbContext(optionsBuilder.Options); } }