using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace ECommerce.Model.Data; public class DesignTimeDbContextFactory : IDesignTimeDbContextFactory { public AppDbContext CreateDbContext(string[] args) { var optionsBuilder = new DbContextOptionsBuilder(); optionsBuilder.UseNpgsql("Host=localhost;Database=ecommerce;Username=postgres;Password=postgres"); return new AppDbContext(optionsBuilder.Options); } }