Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 703 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 703 Bytes

web API with ASP.NET Core

Create a RESTful service with ASP.NET Core that supports Create, Read, Update, Delete (CRUD) operations.

Prerequisites

Local installations of the .NET SDK.

Usage

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}

Microsoft Course

Create a web API with ASP.NET Core