From 86bbedfa67a1e86b6a81aa15430aec6e5fef97d9 Mon Sep 17 00:00:00 2001 From: MustafaGamalMuhammed <45317758+MustafaGamalMuhammed@users.noreply.github.com> Date: Thu, 2 Dec 2021 02:30:45 +0200 Subject: [PATCH] extra hyphen deleted (#24159) --- aspnetcore/tutorials/razor-pages/new-field.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/razor-pages/new-field.md b/aspnetcore/tutorials/razor-pages/new-field.md index b1da0c056d..bd4c835d31 100644 --- a/aspnetcore/tutorials/razor-pages/new-field.md +++ b/aspnetcore/tutorials/razor-pages/new-field.md @@ -128,7 +128,7 @@ The `dotnet-ef migrations add rating` command tells the framework to: The name `rating` is arbitrary and is used to name the migration file. It's helpful to use a meaningful name for the migration file. -The `dotnet-ef database update` command tells the framework to apply the schema changes to the database and to preserve existing data. +The `dotnet ef database update` command tells the framework to apply the schema changes to the database and to preserve existing data. Delete all the records in the database, the initializer will seed the database and include the `Rating` field.