Create a RESTful service with ASP.NET Core that supports Create, Read, Update, Delete (CRUD) operations.
Local installations of the .NET SDK.
dotnet run
On Platform for API Development (Postman, for example), you can use:
// Used to creat a new record.
POST {string Name, bool IsGlutenFree}
// Used to return records on database.
GET {Id}
// Used to delete a record.
Delete {Id}