diff --git a/aspnetcore/tutorials/first-mvc-app/new-field.md b/aspnetcore/tutorials/first-mvc-app/new-field.md index 9b4a6734e3..7cda0eff84 100644 --- a/aspnetcore/tutorials/first-mvc-app/new-field.md +++ b/aspnetcore/tutorials/first-mvc-app/new-field.md @@ -72,7 +72,7 @@ From the **Tools** menu, select **NuGet Package Manager > Package Manager Consol In the PMC, enter the following commands: -```PMC +```powershell Add-Migration Rating Update-Database ``` diff --git a/aspnetcore/tutorials/razor-pages/new-field.md b/aspnetcore/tutorials/razor-pages/new-field.md index e25a478660..50800322c5 100644 --- a/aspnetcore/tutorials/razor-pages/new-field.md +++ b/aspnetcore/tutorials/razor-pages/new-field.md @@ -73,7 +73,7 @@ Build the solution. From the **Tools** menu, select **NuGet Package Manager > Package Manager Console**. In the PMC, enter the following commands: -```PMC +```powershell Add-Migration Rating Update-Database ``` @@ -94,7 +94,7 @@ If you delete all the records in the DB, the initializer will seed the DB and in * Select **OK**. * In the [PMC](xref:tutorials/razor-pages/new-field#pmc), update the database: - ```PMC + ```powershell Update-Database ```