About 45,600 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 …

  2. Migrations in Entity Framework Core

    Migration is a way to keep the database schema in sync with the EF Core model by preserving data. As per the above figure, EF Core API builds the EF Core model from the entity classes, …

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

    Fortunately, the EF Core migration feature makes this flow easier by allowing you to make the changes in the models, generate the script based on the changes, and apply them to the …

  4. 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 …

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

    Sep 10, 2025 · This is where migrations come in. Migrations in EF Core allow you to update your database structure (tables, columns, relationships) whenever your data model changes, …

  6. Entity Framework Core Migrations: Create, Update, Remove, …

    Entity Framework Core (EF Core) provides the Migrations tool to automatically track and apply such changes. EF Core compares the current model with the previous one, identifies the …

  7. Understanding Migrations, Snapshots, and Synchronization in Entity

    Oct 27, 2023 · Entity Framework Core (EF Core) is a powerful tool for managing database schema migrations and synchronization in.NET projects. This article aims to explore the core …

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

    Jun 21, 2025 · Migrations provide a way to incrementally apply schema changes to the database to keep it in sync with your EF Core model while preserving existing data in the database. …

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

    May 18, 2024 · Enter Entity Framework (EF) Migrations, a powerful tool that lets you version your database schemas. Imagine this: Instead of writing SQL scripts, you define your changes in …

  10. Migrations in Entity Framework Core | C# Workshop

    Entity Framework Core provides a powerful feature called migrations that allow you to manage these changes efficiently and safely. What are Migrations? Migrations in Entity Framework …