From bad5c3df889d5401142d3df7f1e24566ec335dee Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 25 Feb 2025 09:35:40 -0500 Subject: [PATCH] Patch Blazor movie dB .NET CLI guidance --- aspnetcore/blazor/tutorials/movie-database-app/part-2.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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: