From c0530966b71c57d696356701992df9f8e77da59e Mon Sep 17 00:00:00 2001 From: Jonas Lomholdt Date: Wed, 10 Jan 2018 22:19:07 +0100 Subject: [PATCH] Update adding-model2xp.md (#5156) Fix typo --- aspnetcore/includes/mvc-intro/adding-model2xp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/includes/mvc-intro/adding-model2xp.md b/aspnetcore/includes/mvc-intro/adding-model2xp.md index 133db9e76f..7169838a5c 100644 --- a/aspnetcore/includes/mvc-intro/adding-model2xp.md +++ b/aspnetcore/includes/mvc-intro/adding-model2xp.md @@ -8,6 +8,6 @@ dotnet ef migrations add InitialCreate dotnet ef database update ``` -The `dotnet ef migrations add InitialCreate` command generates code to create the initial database schema. The schema is based on the model specified in the `DbContext` (In the *Models/MovieContext.cs* file). The `Initial` argument is used to name the migrations. You can use any name, but by convention you choose a name that describes the migration. See [Introduction to migrations](xref:data/ef-mvc/migrations#introduction-to-migrations) for more information. +The `dotnet ef migrations add InitialCreate` command generates code to create the initial database schema. The schema is based on the model specified in the `DbContext` (In the *Models/MvcMovieContext.cs* file). The `Initial` argument is used to name the migrations. You can use any name, but by convention you choose a name that describes the migration. See [Introduction to migrations](xref:data/ef-mvc/migrations#introduction-to-migrations) for more information. -The `dotnet ef database update` command runs the `Up` method in the *Migrations/\_InitialCreate.cs* file, which creates the database. \ No newline at end of file +The `dotnet ef database update` command runs the `Up` method in the *Migrations/\_InitialCreate.cs* file, which creates the database.