diff --git a/aspnetcore/blazor/tutorials/movie-database-app/part-2.md b/aspnetcore/blazor/tutorials/movie-database-app/part-2.md index 2959abb3808d..7bab99f43895 100644 --- a/aspnetcore/blazor/tutorials/movie-database-app/part-2.md +++ b/aspnetcore/blazor/tutorials/movie-database-app/part-2.md @@ -129,10 +129,11 @@ dotnet add package Microsoft.EntityFrameworkCore.Tools dotnet add package Microsoft.AspNetCore.Components.QuickGrid dotnet add package Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore +dotnet add package Microsoft.EntityFrameworkCore.Design ``` > [!IMPORTANT] -> After the first eight commands execute, make sure that you press Enter on the keyboard to execute the last command. +> After the first nine commands execute, make sure that you press Enter on the keyboard to execute the last command. > [!NOTE] > The preceding commands are .NET CLI commands, and .NET CLI commands are executed when entered at a [PowerShell](/powershell/) prompt, which is the default command shell of the VS Code **Terminal**. @@ -184,10 +185,11 @@ dotnet add package Microsoft.EntityFrameworkCore.Tools dotnet add package Microsoft.AspNetCore.Components.QuickGrid dotnet add package Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore +dotnet add package Microsoft.EntityFrameworkCore.Design ``` > [!IMPORTANT] -> After the first eight commands execute, make sure that you press Enter on the keyboard to execute the last command. +> After the first nine commands execute, make sure that you press Enter on the keyboard to execute the last command. Open the app's project file (`BlazorWebAppMovies.csproj`). Drop the `` and `` from the `Microsoft.EntityFrameworkCore.Design` package reference. In the following example, the `{VERSION}` placeholder is the package's version and remains unchanged: