About 2,270,000 results
Open links in new tab
  1. Applying Migrations - EF Core | Microsoft Learn

    Oct 29, 2024 · Strategies for applying schema migrations to production and development databases using Entity Framework Core

  2. Update Database Command in Entity Framework Core

    Explore the essentials of the Update Database command in EF Core. Learn how to apply or revert migrations using the Up and Down methods, the differences between the Package Manager Console …

  3. entity framework - EF How can I update my Database with …

    Nov 3, 2023 · *I think ConnectionString is self-explanatory. After that, i see in my project the represented classes from the database. Now My Question: How can i update the database correctly? I started …

  4. Add, Update, and Delete Data using Entity Framework

    Learn how to add, update or delete data in the connected scenario using Entity Framework 6.

  5. Learn How to Update your Database Schema - Entity Framework

    Jun 18, 2025 · Consider using Code First Migrations to update the database (https://go.microsoft.com/fwlink/?LinkId=238269). It's time to start using Code First Migrations. There …

  6. Update Database Schema and Migrations in EF Core

    Dec 8, 2025 · In Debug mode, XAF automatically updates database schema when the structure of business objects changes. For instance, when you add a new business class or a property, or …

  7. EF Core Update - C# Tutorial

    To update an entity, you follow these steps: First, get the entity by querying it from the database. Second, make changes to the entity. Third, call the SaveChanges() method of the DbContext to …

  8. Entity Framework Core Migrations: Create, Update, Remove, Revert

    Entity Framework Core (EF Core) provides the Migrations feature that lets you update the database schema without losing existing data. This article explores EF Core Migrations, their key features, and …

  9. Entity Framework Core: Update Database | JetBrains Rider

    Dec 4, 2024 · Right-click the desired project in the Solution Explorer and choose Entity Framework Core | Update Database. Select Tools | Entity Framework Core | Update Database from the main menu. A …

  10. Entity Framework Core Migrations

    EF Core Migrations automatically generates and executes the necessary SQL scripts to update the database schema, so you don't have to write manual scripts or worry about data loss.