Summary
Keywords
Full Transcript
View full playlist: https://aka.ms/dotnet/beginnervideos/youtube/webapi Get Started with .NET in VS Code: https://aka.ms/dotnet/get-started/vscode 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. For an explanation of ASP.NET Core and .NET, check out the first video in this series: https://youtu.be/OmUuR4GiwIE Resources: Follow along: https://aka.ms/dotnet/beginnervideos/repo Tutorial: Create a minimal API with ASP.NET Core: https://learn.microsoft.com/aspnet/core/tutorials/min-web-api?view=aspnetcore-8.0&tabs=visual-studio 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 Connect with .NET: Blog: https://aka.ms/dotnet/blog Twitter: https://aka.ms/dotnet/twitter TikTok: https://aka.ms/dotnet/tiktok Mastodon: https://aka.ms/dotnet/mastodon LinkedIn: https://aka.ms/dotnet/linkedin Facebook: https://aka.ms/dotnet/facebook Docs: https://learn.microsoft.com/dotnet Forums: https://aka.ms/dotnet/forums 🙋♀️Q&A: https://aka.ms/dotnet-qa 👨🎓Microsoft Learn: https://aka.ms/learndotnet #dotnet #webapi #aspnetcore #visualstudio #visualstudiocode #vscode
