EFCore.AutomaticMigrations 7.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package EFCore.AutomaticMigrations --version 7.0.2
NuGet\Install-Package EFCore.AutomaticMigrations -Version 7.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EFCore.AutomaticMigrations" Version="7.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EFCore.AutomaticMigrations --version 7.0.2
#r "nuget: EFCore.AutomaticMigrations, 7.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EFCore.AutomaticMigrations as a Cake Addin
#addin nuget:?package=EFCore.AutomaticMigrations&version=7.0.2

// Install EFCore.AutomaticMigrations as a Cake Tool
#tool nuget:?package=EFCore.AutomaticMigrations&version=7.0.2

About the package

Enable Automatic Migrations for Entity Framework Core for SQL Databases.

Usage

DbMigrationsOptions object allows to configure migration options:

/// <summary>
/// Allow auto migration with data lost. 
/// </summary>
public bool AutomaticMigrationDataLossAllowed { get; set; } = false;
/// <summary>
/// Enable to execute auto migration
/// </summary>
public bool AutomaticMigrationsEnabled { get; set; } = true;
/// <summary>
///  Drop all tables from database and recreate based on model snapshot. Useful in scenarios when the data is transient and can be dropped when the schema changes. For example during prototyping, in tests, or for local caches
/// When ResetDatabaseSchema is true AutomaticMigrationsEnabled and AutomaticMigrationDataLossAllowed are set to true
/// </summary>
public bool ResetDatabaseSchema { get; set; } = false;

The package support following ways to apply/view-applied migrations:

  1. Using MigrateDatabaseToLatestVersion
  • Execute<TContext>(TContext context);
  • ExecuteAsync<TContext>(TContext context);
  • Execute<TContext, TMigrationsOptions>(TContext context, TMigrationsOptions options);
  • ExecuteAsync<TContext, TMigrationsOptions>(TContext context, TMigrationsOptions options);
  // Get context
  var context = services.GetRequiredService<YourContext>();  

  // Apply migrations
  MigrateDatabaseToLatestVersion.Execute(context);
  // Reset database schema
  MigrateDatabaseToLatestVersion.Execute(context, new DbMigrationsOptions { ResetDatabaseSchema = true });

  // Apply migrations async
  await MigrateDatabaseToLatestVersion.ExecuteAsync(context);
  // Reset database schema async
  await MigrateDatabaseToLatestVersion.ExecuteAsync(context, new DbMigrationsOptions { ResetDatabaseSchema = true });
  1. Using Context extensions methods
  • MigrateToLatestVersion<TContext>(this TContext context);
  • MigrateToLatestVersionAsync<TContext>(this TContext context);
  • MigrateToLatestVersion<TContext, TMigrationsOptions>(this TContext context, TMigrationsOptions options);
  • MigrateToLatestVersionAsync<TContext, TMigrationsOptions>(this TContext context, TMigrationsOptions options);
 // Get context
 var context = services.GetRequiredService<YourContext>();
 
 // Apply migrations
 context.MigrateToLatestVersion();
// Reset database schema async
 context.MigrateToLatestVersion(new DbMigrationsOptions { ResetDatabaseSchema = true });

 // Apply migrations async
 context.MigrateToLatestVersionAsync();
 // Reset database schema async
 await context.MigrateToLatestVersionAsync(new DbMigrationsOptions { ResetDatabaseSchema = true });
  1. View applied migrations - return list of MigrationOperation object
  //Get context
  var context = services.GetRequiredService<YourContext>();
  // Get applied migrations
   List<MigrationRaw> appliedMigrations = context.ListMigrations();
  // Get applied migrations async
   List<MigrationRaw> appliedMigrations = await context.ListMigrationsAsync();
  
   /// <summary>
   /// Migration Raw object
   /// </summary>
   public class MigrationRaw
   {
       public string MigrationId { get; set; } = string.Empty;
       public DateTime? CreatedDate { get; set; } = null;
   }
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on EFCore.AutomaticMigrations:

Package Downloads
Dao.LightFramework

Package Description

TCDev.APIGenerator.Data.SQL

Adds necessary functionality to use MS SQL Server and Azure SQL Instances with the API Generator.

TCDev.APIGenerator.Data.SQLite

Adds necessary functionality to use SQLLite with the API Generator. Rasepi greates fully working CRUD Apis from just models

TCDev.APIGenerator.Data.Postgres

Adds necessary functionality to use Postgres databases with the API Generator. Rasepi greates fully working CRUD Apis from just models

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on EFCore.AutomaticMigrations:

Repository Stars
DeeJayTC/net-dynamic-api
A library that turns your model into a fully working API, define your model as markdown (soon), json or c#.
Version Downloads Last updated
8.0.0 2,800 11/15/2023
7.0.11 802 10/2/2023
7.0.10 1,695 8/20/2023
7.0.7 1,041 6/14/2023
7.0.5.2 1,769 4/28/2023
7.0.5.1 508 4/27/2023
7.0.5 635 4/12/2023
7.0.4 885 3/27/2023
7.0.3 573 3/27/2023
7.0.2 559 3/27/2023
7.0.1 862 3/27/2023
7.0.0 3,945 12/4/2022
6.0.10.1 5,624 10/20/2022
6.0.10 839 10/12/2022
6.0.10-rc 493 10/12/2022
6.0.9.1 737 10/12/2022
6.0.8 729 10/12/2022
6.0.7 711 10/12/2022
6.0.6 779 10/12/2022
6.0.5 709 10/12/2022
6.0.4 4,727 4/15/2022
6.0.3.1 2,194 3/22/2022
6.0.3 1,510 3/22/2022
6.0.0.1 1,070 12/6/2021
6.0.0 727 12/6/2021
5.0.0 1,810 11/26/2020
1.0.2 1,018 11/26/2020
1.0.1 2,965 5/11/2020
1.0.0 908 4/22/2020

Update package to spport Entity Framework Core 7.0.2.