Skip to content

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

Notifications You must be signed in to change notification settings

guisoares1/API-Web-using-ASP.NET-Core

Repository files navigation

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages