惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
博客园 - 叶小钗
博客园 - 聂微东
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
小众软件
小众软件
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a Smarter EF Core Migration CLI for Multi-Pro...
Adrian Meneg · 2026-05-06 · via DEV Community

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

Enter fullscreen mode Exit fullscreen mode

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 migrations becomes surprisingly annoying.

You forget the startup project.

You point to the wrong DbContext.

You generate empty migrations.

You have no quick visibility into which migrations are applied or pending.

And every time you need to run a migration command, you have to remember a long list of arguments.

That friction kept happening to me while working on a multi-tenant SaaS platform I'm currently building, so I decided to build a tool to simplify the workflow.

That tool became EfPilot.

The goal

I wanted migrations to feel like this:

efpilot init
efpilot add
efpilot remove
efpilot update
efpilot status
efpilot diff

Enter fullscreen mode Exit fullscreen mode

Simple.

Minimal.

No memorizing paths.

No repeated boilerplate.

Problem: EF Core works great... until your architecture gets real

In small demos, EF migrations are straightforward.

But modern architectures often look more like this:

apps/
 ├── identity/
 │   ├── api/
 │   ├── application/
 │   ├── infrastructure/
 │   └── domain/
 │
 ├── raterisk/
 │   ├── api/
 │   ├── application/
 │   ├── infrastructure/
 │   └── domain/
 │
 └── worker/

Enter fullscreen mode Exit fullscreen mode

In my case:

separate APIs
infrastructure projects
background workers
multiple DbContexts
multi-tenant architecture

At that point, running migrations manually becomes repetitive and error-prone.

Step 1: Discovering the solution structure

Before detecting any DbContext, the tool first needed to understand the solution structure.

My initial implementation scanned directories looking for a traditional:

*.sln

Enter fullscreen mode Exit fullscreen mode

That worked...

Until I realized newer .NET versions can also generate:

*.slnx

Enter fullscreen mode Exit fullscreen mode

So I updated the solution discovery logic to support both formats.

Once the solution was found, EfPilot could scan all referenced projects automatically.

Step 2: Automatically detecting DbContexts

After discovering all projects in the solution, the next challenge was identifying actual DbContext classes.

My initial implementation parsed .cs files looking for:

class Something : DbContext

Enter fullscreen mode Exit fullscreen mode

That worked well...

Until I started detecting false positives like:

IdentityDbContextFactory
RateRiskDbContextFactory

Enter fullscreen mode Exit fullscreen mode

These implement:

IDesignTimeDbContextFactory

…but they are not actual DbContexts.

So I added filtering logic to exclude them.

That significantly improved detection accuracy.

Step 3: Inferring the correct startup project

This was probably the most interesting problem.

When multiple projects exist, how do you determine which startup project belongs to a DbContext?

I implemented a scoring system based on heuristics:

  • Uses Web SDK → higher score
  • Contains Program.cs
  • Contains appsettings.json
  • Project name contains Api
  • Folder proximity
  • Same bounded context naming

Example:

RateRiskDbContext
→ RateRisk.Api (score: 185)
→ RateRisk.Worker (score: 125)

Enter fullscreen mode Exit fullscreen mode

This made the CLI smart enough to suggest the correct startup project automatically.

Without forcing manual configuration every time.

Step 4: Generating config profiles

After detection, EfPilot creates a configuration file like this:

{
  "version": 1,
  "solution": "MyProject.slnx",
  "profiles": [
    {
      "name": "RateRiskDbContext",
      "dbContext": "RateRiskDbContext",
      "project": "apps/raterisk/infrastructure/RateRisk.Infrastructure.csproj",
      "startupProject": "apps/raterisk/api/RateRisk.Api.csproj",
      "migrationsFolder": null
    }
  ]
}

Enter fullscreen mode Exit fullscreen mode

This allows future commands to be extremely simple.

Step 5: Preventing empty migrations

This solved one of my biggest frustrations.

Sometimes you run:

dotnet ef migrations add SomeMigration

Enter fullscreen mode Exit fullscreen mode

...and EF generates an empty migration because nothing actually changed.

Now you have useless migration files polluting your repository.

EfPilot solves this by:

  1. Generating the migration
  2. Inspecting the generated Up() and Down() methods
  3. Detecting if they're empty
  4. Automatically removing the migration

If nothing changed:

No schema changes detected.
Migration automatically removed.

Enter fullscreen mode Exit fullscreen mode

Small feature.

Huge quality of life improvement.

Step 6: Building migration diff preview

This became one of my favorite features.

Before applying migrations, I wanted visibility into what was about to happen.

So I added:

efpilot diff

Enter fullscreen mode Exit fullscreen mode

The tool analyzes migration files and extracts operations like:

  • AddColumn
  • DropColumn
  • CreateTable
  • CreateIndex

Example output:

✔ Add column 'Code' to 'Loans'
✔ Create index 'IX_Loans_Code'

Enter fullscreen mode Exit fullscreen mode

Step 7: Improving CLI UX

I didn't want ugly terminal output.

So I used Spectre.Console to improve the experience.

That gave me:

cleaner headers
colored output
migration tables
applied/pending summaries

Example:

✔ Applied: 5
⏳ Pending: 2

Enter fullscreen mode Exit fullscreen mode

Step 8: Refactoring and testing

At some point I realized I had built a lot of features quickly...

but needed better architecture.

I refactored:

  • command abstractions
  • dependency injection
  • output handling
  • test coverage

This was probably less exciting than the feature work...

but arguably more important.

What I learned

A few things surprised me while building this:

Developer tooling UX matters a lot

Small frustrations repeated every day are worth solving.

Real-world architecture creates tooling gaps

Framework tools often work perfectly for simple examples.

Real architectures expose friction.

Side projects don't need to be massive

This started as:

"I'm tired of typing long EF commands"

And turned into a real CLI product.

Final thoughts

EfPilot started as a personal productivity tool.

But I ended up building something I'd happily use in any serious .NET project.

If you're dealing with complex EF Core migrations workflows, I'd love your feedback.

GitHub repo:

https://github.com/adrianmenegatti/efpilot

Possible future improvements

  • NuGet global tool packaging
  • Interactive mode
  • Better migration diff engine
  • Migration visualization
  • CI integration

This project reminded me that some of the best products come from solving your own recurring frustrations.

And sometimes... those frustrations start with a very long dotnet ef command 😄