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