Minimal WebAPIs offer a lightweight and streamlined approach to building web APIs in ASP.NET Core. In this beginner's guide, we will explore the fundamental concepts of Minimal WebAPI development using C#. We'll cover the basics of creating endpoints, handling requests, and returning responses. Prerequisites To follow along with this guide, you should have a basic … Continue reading Getting Started with Minimal WebAPI: Beginner’s Guide
Month: June 2023
Level up string manipulation with String Interpolation in C#
String manipulation is a fundamental aspect of software development, allowing us to create dynamic and expressive outputs. In C#, one powerful tool that enhances the readability and simplicity of string manipulation is string interpolation. Let's explore the benefits and usage of string interpolation in C#, and how it can improve your coding experience. What is … Continue reading Level up string manipulation with String Interpolation in C#
Use VS Code to Edit WebApi Projects
You can use Visual Studio Code (VS Code) as an editor for web API projects. VS Code is a lightweight, cross-platform code editor that provides a rich set of features and extensions for working with various programming languages, including C# and .NET. To work with ASP.NET Web API projects in VS Code, you need to … Continue reading Use VS Code to Edit WebApi Projects
RESTful Web APIs Book
I've been reading this book on the basics of RESTful API. It has a good description of the basics with a concentration on building hypermedia API. While that was an important part of the original REST definition, it seems to continue to be the least used and more misunderstood. But I recommend this book for … Continue reading RESTful Web APIs Book