using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace ClaudeDo.Data; public sealed class ClaudeDoDbContextFactory : IDesignTimeDbContextFactory { public ClaudeDoDbContext CreateDbContext(string[] args) { var options = new DbContextOptionsBuilder() .UseSqlite("Data Source=design-time.db") .Options; return new ClaudeDoDbContext(options); } }