About 22,500 results
Open links in new tab
  1. Migrations Overview - EF Core | Microsoft Learn

    Jan 12, 2023 · EF Core records all applied migrations in a special history table, allowing it to know which migrations have been applied and which haven't. The rest of this page is a step-by-step beginner's …

  2. How to Use Migrations in EF Core? - C# Corner

    Sep 10, 2025 · Learn how to use Entity Framework Core (EF Core) migrations to keep your database schema in sync with your application's data model. This guide provides a step-by-step explanation of …

  3. Migrations in Entity Framework Core

    Learn about migrations in EF Core. Learn how to add migration, update database and generate script.

  4. How to Use EF Core Migrations - C# Tutorial

    In this tutorial, you'll learn about how to use the EF Core migrations to synchronize the model changes to the database.

  5. EF Core Migrations - Learn How to Use Common Command Line

    Jun 21, 2025 · Unlock the power of EF Core with Migrations to understand existing command lines. Learn how to add a migration, update your database, and delete a migration.

  6. EF Core Migrations: A Detailed Guide - Milan Jovanovic

    May 18, 2024 · In this newsletter, we'll break down the essentials of EF Migrations. We'll explore creating migrations, SQL scripts, applying migrations, migration tooling, and more.

  7. EF Core Migrations: Practical, Battle‑Tested Guide (2025)

    Aug 26, 2025 · In this guide, I’ll show you how to run Entity Framework Core (EF Core) migrations like a pro: fast, predictable, and safe. What are migrations? Migrations are versioned change sets for your …

  8. Entity Framework Core Migrations

    EF Core Migrations is a feature of EF Core that enables developers to evolve the database schema over time in a versioned manner as the application evolves. With migrations, you can easily apply or …

  9. Automating EF Core Migrations in .NET Core Applications

    Nov 24, 2024 · With Entity Framework Core (EF Core), migrations allow you to evolve your database schema alongside your application code. To streamline this process, especially in development and …

  10. Understanding Migrations, Snapshots, and Synchronization in Entity ...

    Oct 27, 2023 · This article delves into how Entity Framework Core keeps your database schema synchronized with your data model using migration files, snapshots, and a special database table.