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