The sample project for call api containing api controllers. To test the project you will issue GET and POST to the api.
.NET Core SDK v2.1.4 or newer A SQL Server database (Localdb or any modern version of SQL Server will work fine)
Edit server connection in appsettings.json
"ConnectionStrings": {
"DefaultConnection": "Server=DESKTOP-G4NBSB1;Database=TODOLIST;ConnectRetryCount=0;Trusted_Connection=True;MultipleActiveResultSets=true"
}
Call api example
Init database
Get list task
Create new task
Update task
Delete task