How I Built a Smarter EF Core Migration CLI for Multi-Project Solutions
Adrian Menegatti
If you've worked with Entity Framework Core in real-world architectures, you've probably written commands like this: dotnet ef migrations add InitialCreate \ --project src/MyApp.Infrastructure \ --startup-project src/MyApp.Api \ --context AppDbContext And maybe this worked fine... Until your architecture started growing. Suddenly you have: multiple APIs worker services separate infrastructure projects multiple DbContexts different migration folders multiple bounded contexts And then running migr
