using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace InternshipSystem.Repository { public class InternshipDbContextFactory : IDesignTimeDbContextFactory { public InternshipDbContext CreateDbContext(string[] args) { var optionsBulider = new DbContextOptionsBuilder(); optionsBulider.UseNpgsql("Host=localhost;Port=5432;Database=postgres;Username=postgres;Password=szwoniu"); return new InternshipDbContext(optionsBulider.Options); } } }