using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace HrynCo.NotificationService.DAL.EF; internal sealed class NotificationDbContextFactory : IDesignTimeDbContextFactory { public NotificationDbContext CreateDbContext(string[] args) { var options = new DbContextOptionsBuilder() .UseNpgsql("Host=localhost;Port=5432;Database=notification_service;Username=postgres;Password=postgres") .Options; return new NotificationDbContext(options); } }