Skip to content

Commit b31b0a2

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs/issues/50537
updated the below command under Run the application dotnet tool install -g dotnet-ef --version 3.1.1 dotnet-ef database update
1 parent a857ac0 commit b31b0a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/app-service/app-service-web-tutorial-dotnetcore-sqldb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ The sample project contains a basic CRUD (create-read-update-delete) app using [
5959
Run the following commands to install the required packages, run database migrations, and start the application.
6060

6161
```bash
62-
dotnet restore
63-
dotnet ef database update
62+
dotnet tool install -g dotnet-ef --version 3.1.1
63+
dotnet-ef database update
6464
dotnet run
6565
```
6666

0 commit comments

Comments
 (0)