using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.EntityFramework { public class DaSaSoDbContextFactory : IDesignTimeDbContextFactory { public DaSaSoDbContext CreateDbContext(string[] args = null) { var options = new DbContextOptionsBuilder(); options.UseNpgsql("server = localhost"); return new DaSaSoDbContext(options.Options); } } }