Emmanuel Gabrielcodease.hashnode.dev·Jan 7, 2025Setting Up Minimal.Net6 Rest API with SQL ServerSummary: This tutorial will teach you how to set up a minimal dotnet6 Rest API using SQL Server as the data store. According to Microsoft Docs, minimal APIs (Introduced with the Net6 framework) are architected to create HTTP APIs with minimal depende...minimal-apis
Ujwal Watgulesharpcode.hashnode.dev·Dec 25, 2024Minimal APIs in ASP.NET CoreIntroduction Minimal APIs, introduced in .NET 6, provide a lightweight approach to building HTTP APIs with minimal setup and configuration. They simplify the development of microservices and small APIs by reducing boilerplate code and focusing on the...90 readsC#
Aysham Aliaysham.dev·Nov 29, 2024Creating a Minimal API Dot Net 81 - Creating the project in VSCode Download these extensions C# Dev Kit IntelliCode for C# Dev Kit Click on “Create .Net Project” or can Ctrl-Shift+p to create a new dot net project Select ASP.Net Core Empty (Web) Select Folder Give project ...48 readsdotnet
Khalilmaniani.hashnode.dev·May 18, 2024An Improved Method for Building APIs using Fast EndpointsWhile researching, I discovered a library called Fast Endpoints, which immediately intrigued me. At the time, I had been experimenting with Minimal APIs, appreciating their simplicity and performance compared to MVC Controllers. However, I found that...fast endpoint
Khalilmaniani.hashnode.dev·May 18, 2024Building a Web API in .NET using Minimal APIsWith the introduction of .NET 6, Microsoft brought a simplified approach to creating web applications and APIs called Minimal APIs. This new model reduces boilerplate code and provides a streamlined way to define and handle HTTP requests. In this art...fast endpoints
Md Asif Alammeasifalam.hashnode.dev·May 13, 20244. Creating a Coupon Model and Coupon Store in .Net Core Minimal APIIn this post, we'll explore how to create a coupon model and a coupon store in C#. Coupons are commonly used in e-commerce applications to offer discounts to customers. We'll define a Coupon class to represent individual coupons and a CouponStore cla...Minimal API in DotNet Coreminimal-apis
belsetbelset.hashnode.dev·Mar 15, 2024Validation of input data in Minimal API filters .NET, sensible and without fussI believe anyone would like to study new technologies “on the fly”. Any extra-efforts which may arise in comprehending some difficult subject may disgust that person and cause him or her to stop doing it. To me, it would seem kind of obvious why this...34 readsflatvalidator
Eduardedkorenkov.hashnode.dev·Nov 23, 2023Yet Another Way to Use ASP.NET Core HttpClientIntroduction During my day-to-day work, especially with Microservices or integrating third-party services, it is very common thing for me to deal with web requests. But, unfortunately, I usually see a lot of old style approaches to send requests or a...149 readsdotnetcore
akhil kvakhil36.hashnode.dev·Nov 12, 2023How to Build a CRUD API with .NET Minimal APIs and SwaggerDeveloping a well-documented CRUD API in .NET just got easier with Minimal APIs and Swagger. In this guide, learn how to build a fast, lightweight CRUD API and generate interactive API docs using these new .NET tools. Why Build CRUD APIs with .NET Mi...1 like·29 reads.NET
Siddhesh PrabhugaonkarforCloud Authoritycloud-authority.com·Oct 3, 2023Building a CRUD Application with Minimal APIs in .NETIntroduction The world of web development is constantly evolving, and .NET developers are no strangers to these changes. In recent times, Microsoft has introduced Minimal APIs, a new way of building lightweight, fast, and efficient web APIs. In this ...1 like·159 readsminimal-apis