From 19f65664d8d70c0807bd4f8af9917b1d08f4fea5 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Fri, 11 Aug 2023 20:22:43 -0700 Subject: [PATCH] Add --use-controllers (#30038) --- aspnetcore/tutorials/first-web-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-web-api.md b/aspnetcore/tutorials/first-web-api.md index dc911692a5..5dc6ad1c4b 100644 --- a/aspnetcore/tutorials/first-web-api.md +++ b/aspnetcore/tutorials/first-web-api.md @@ -83,7 +83,7 @@ A NuGet package must be added to support the database used in this tutorial. * Run the following commands: ```dotnetcli - dotnet new webapi -o TodoApi + dotnet new webapi --use-controllers -o TodoApi cd TodoApi dotnet add package Microsoft.EntityFrameworkCore.InMemory code -r ../TodoApi