using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace AS1024.GeoFeed.Core.GeoFeedLocalCache { public class GeoFeedDesignTimeMigration : IDesignTimeDbContextFactory { public GeoFeedCacheDbContext CreateDbContext(string[] args) { var builder = new DbContextOptionsBuilder(); builder.UseSqlite("Data Source=migratedb.db"); return new GeoFeedCacheDbContext(builder.Options); } } }