Add --use-controllers (#30038)

pull/30030/head
Tom Dykstra 2023-08-11 20:22:43 -07:00 committed by GitHub
parent 59205ccb1f
commit 19f65664d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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