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...33 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...147 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.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·158 readsminimal-apis
Sudi Davidsudi.dev·Jul 10, 2023How to send an email with ASP.NET Core Minimal API and MailKitHello everyone, I trust you're all doing well. Today, we're going to explore how to send an email from an ASP.NET Core Minimal API using MailKit from scratch. Assuming you have all the necessary tools installed, including the .NET SDK and an Integrat...3 likes·511 readssend-email
Sudi Davidsudi.dev·Jun 12, 2023Getting started with ASP.NET Core 7 Minimal APIsImagine you are a new chef, eager to make your mark in the culinary world. You have a passion for cooking, but you're just starting and don't have much experience yet. You want to create a new recipe that showcases your skills, but you're not quite s...4 likes·210 readsasp.net core
Ronald Kaindaronaldkainda.blog·May 19, 2023C# Minimal API - the node js migrationMinimal API is a feature introduced in .NET 6 that simplifies the process of building APIs. This feature is designed to help developers write less code, reduce boilerplate code, and increase productivity. Minimal API provides a lightweight, streamlin...1 like·260 readsC#