using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace DeepDrftWeb.Services.Data; public class DeepDrftContextFactory : IDesignTimeDbContextFactory { public DeepDrftContext CreateDbContext(string[] args) { var optionsBuilder = new DbContextOptionsBuilder(); optionsBuilder.UseSqlite("Data Source=../Database/deepdrft.db"); return new DeepDrftContext(optionsBuilder.Options); } }