What is EF Core Migrations
In EF core we create or update data models in our code. We call this approach the Code First approach. As our app grows, we are going to make a lot of changes to our model. This will result in our database going out of sync with the model.
Hence we need to update the database as we make changes to the model. But making changes manually is error-prone. We can also create a fresh database from the model, but it will result in loss of data.
The EF Core migrations make it easier to push the changes to the database and also preserve the existing data in the database. It provides commands like add-migration, remove-migration to create & remove migrations. Once migrations are generated, we update the database using the update-database. We can also generate the migration script and execute it in the production server.
How to Create Ef Core Migrations
Let us create a new console application to see how migrations work in entity framework core. Name the app as EFCoreMigration.
First, We will create a model and context class. Then we use the Migrations commands to create migrations and then later update the database.
Install the Microsof.Entity FrameworkCore.SqlServer package, which in turn installs the Entity Framework Core package
Install-package Microsoft.EntityFrameworkCore.SqlServer
Models for Migration
Create the Models folder and create two class Product.cs and Vendor.cs as shown below
Context: Under the models folder create the context class EFContext, which inherits from DBContext as shown below
Preparing for Migration
Open the Package Manager and run the following command.
Install-Package Microsoft.EntityFrameworkCore.Tools
Installing the above package also installs the Microsoft.EntityFrameworkCore.Design package. This package actually contains the commands like add migrations, Update database, scaffold an existing database by reverse-engineering the schema of a database, etc
List of Migration Commands
add migration
Whenever you create or Modify the domain classes, then the first thing you need to do is to create a Migration. This is done by add-migration command (or by using dotnet EF migrations add command line)
Open the Package Console manager and run the command
add-migration "initial"
Inspecting the Migration scripts
The add-migration command created three classes under the folder Migrations. One is the Migration class and the second one is the designer class & the last one is snapshot class.
The add-migration command generates this file when it is run for the first time. In the subsequent runs, it uses it to find out the changes to be made to the model. It then overwrites it so that it remains up to date.
Update database
The add-migration creates the migration package but does not create the database.
The update-database command is used to bring the database in sync with the latest migration or the migration name specified as the argument
Run the update-database as shown below
update-database
Open the SQL Server and you will see that the tables Products & vendors are created in the Database. Also, note that the _EFMigrationsHistory table.
__EFMigrationsHistory
This table keeps track of the Migrations applied to the database. It contains two columns one is MigrationId and ProductVersion. MigrationId contains the Unique ID of the migration and ProductVersion is the version number of Entity Framework used.
The update-databasechecks if the database exists. If the table __EFMigrationsHistory does not exists then the update-database applies the migration from the beginning and then creates the __EFMigrationsHistory
If __EFMigrationsHistory already exists, then update-database checks the to see the last migration applied and then continues to apply the migrations from the last migrations to the latest. It then inserts latest migration id in the __EFMigrationsHistory table
Update-database never checks the database schema to verify whether it matches with the model. So if you accidentally delete the __EFMigrationsHistory table, alter or delete any other table or fields, the EF Core never reports an error. The error occurs only when the App is running and you query the altered/deleted table
Connection string for update-database
The update-database requires us to create the OnConfiguring() method in the context class and expects us to pass the correct connection string to the desired database provider. For example if you are using the Sql Server then you need to call the method UseSqlServer(ConnectionString)
That is because the update-database instantiates the Context class and executes the onConfiguring method so as to configure the context. It is unaware of how and where you have stored the connection string. And it does not have the access to Dependency injection container as it runs outside the project.
Reference: https://www.tektutorialshub.com/
0 comments:
Post a Comment