Tutorial Part 5, Apply Migrations To The Contoso University Sample - Microsoft Docs
Tutorial Part 5, Apply Migrations To The Contoso University Sample - Microsoft Docs
In this tutorial, you start using the EF Core migrations feature for managing data model
changes. In later tutorials, you'll add more migrations as you change the data model.
Prerequisites
Sorting, filtering, and paging
About migrations
When you develop a new application, your data model changes frequently, and each time
the model changes, it gets out of sync with the database. You started these tutorials by
configuring the Entity Framework to create the database if it doesn't exist. Then each time
you change the data model -- add, remove, or change entity classes or change your
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 1/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
DbContext class -- you can delete the database and EF creates a new one that matches the
model, and seeds it with test data.
This method of keeping the database in sync with the data model works well until you
deploy the application to production. When the application is running in production it's
usually storing data that you want to keep, and you don't want to lose everything each
time you make a change such as adding a new column. The EF Core Migrations feature
solves this problem by enabling EF to update the database schema instead of creating a
new database.
To work with migrations, you can use the Package Manager Console (PMC) or the CLI.
These tutorials show how to use CLI commands. Information about the PMC is at the end
of this tutorial.
In Solution Explorer, right-click the project and choose Open Folder in File Explorer
from the context menu.
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 2/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
Console = Copy
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 3/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
info: Microsoft.EntityFrameworkCore.Infrastructure[10403]
Entity Framework Core initialized 'SchoolContext' using provider
'Microsoft.EntityFrameworkCore.SqlServer' with options: None
Done. To undo this action, use 'ef migrations remove'
If you see an error message "cannot access the file ... ContosoUniversity.dll because it is
being used by another process.", find the IIS Express icon in the Windows System Tray, and
right-click it, then click ContosoUniversity > Stop Site.
C# = Copy
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 4/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
}
}
Migrations calls the Up method to implement the data model changes for a migration.
When you enter a command to roll back the update, Migrations calls the Down method.
This code is for the initial migration that was created when you entered the migrations add
InitialCreate command. The migration name parameter ("InitialCreate" in the example) is
used for the file name and can be whatever you want. It's best to choose a word or phrase
that summarizes what is being done in the migration. For example, you might name a later
migration "AddDepartmentTable".
If you created the initial migration when the database already exists, the database creation
code is generated but it doesn't have to run because the database already matches the
data model. When you deploy the app to another environment where the database doesn't
exist yet, this code will run to create your database, so it's a good idea to test it first. That's
why you changed the name of the database in the connection string earlier -- so that
migrations can create a new one from scratch.
See EF Core Migrations in Team Environments for more information about how the
snapshot file is used.
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 5/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
The output from the command is similar to the migrations add command, except that you
see logs for the SQL commands that set up the database. Most of the logs are omitted in
the following sample output. If you prefer not to see this level of detail in log messages,
you can change the log level in the appsettings.Development.json file. For more information,
see Logging in .NET Core and ASP.NET Core.
text = Copy
info: Microsoft.EntityFrameworkCore.Infrastructure[10403]
Entity Framework Core initialized 'SchoolContext' using provider
'Microsoft.EntityFrameworkCore.SqlServer' with options: None
info: Microsoft.EntityFrameworkCore.Database.Command[20101]
Executed DbCommand (274ms) [Parameters=[], CommandType='Text',
CommandTimeout='60']
CREATE DATABASE [ContosoUniversity2];
info: Microsoft.EntityFrameworkCore.Database.Command[20101]
Executed DbCommand (60ms) [Parameters=[], CommandType='Text',
CommandTimeout='60']
IF SERVERPROPERTY('EngineEdition') <> 5
BEGIN
ALTER DATABASE [ContosoUniversity2] SET READ_COMMITTED_SNAPSHOT ON;
END;
info: Microsoft.EntityFrameworkCore.Database.Command[20101]
Executed DbCommand (15ms) [Parameters=[], CommandType='Text',
CommandTimeout='30']
CREATE TABLE [__EFMigrationsHistory] (
[MigrationId] nvarchar(150) NOT NULL,
[ProductVersion] nvarchar(32) NOT NULL,
CONSTRAINT [PK___EFMigrationsHistory] PRIMARY KEY ([MigrationId])
);
info: Microsoft.EntityFrameworkCore.Database.Command[20101]
Executed DbCommand (3ms) [Parameters=[], CommandType='Text',
CommandTimeout='30']
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'20190327172701_InitialCreate', N'5.0-rtm');
Done.
Use SQL Server Object Explorer to inspect the database as you did in the first tutorial.
You'll notice the addition of an __EFMigrationsHistory table that keeps track of which
migrations have been applied to the database. View the data in that table and you'll see
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 6/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
one row for the first migration. (The last log in the preceding CLI output example shows
the INSERT statement that creates this row.)
Run the application to verify that everything still works the same as before.
Important: This isn't the same package as the one you install for the CLI by editing the
.csproj file. The name of this one ends in Tools , unlike the CLI package name which ends in
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 7/8
3/6/2021 Tutorial Part 5, apply migrations to the Contoso University sample | Microsoft Docs
Tools.DotNet .
For more information about the CLI commands, see .NET Core CLI.
For more information about the PMC commands, see Package Manager Console (Visual
Studio).
Next step
Advance to the next tutorial to begin looking at more advanced topics about expanding
the data model. Along the way you'll create and apply additional migrations.
https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/migrations?view=aspnetcore-5.0 8/8