Episode

Implementing a Web API in .NET (Part 3 of 8) | Backend Web Development with .NET for Beginners

with Safia Abdalla

This video covers implementing a CRUD web API for managing tasks in a to-do list with minimal APIs in ASP.NET Core. In ASP.NET Core, Minimal APIs allow us to describe how requests should be processed by a server using an entity known as an endpoint. Minimal APIs provide succinct methods for registering new endpoints to handle incoming requests in our web API.

In this video, Safia builds a Todo application with an API that follows the CRUD pattern of development. CRUD is an acronym that stands for Create, Read, Update, Delete. It describes the ways that users can interact with objects in an application.

Chapters

  • 00:00 - Intro
  • 00:55 - Defining how a web request should be handled
  • 02:24 - Send requests to an HTTP server within VS Code
  • 03:43 - What is CRUD?
  • 04:22 - Building a CRUD application
  • 06:12 - Create Todos with a POST route handler
  • 09:10 - Retrieve Todos with a GET route handler
  • 12:26 - Get all Todos
  • 13:18 - Deleting Todos

Developer
.NET