#minimal-apis
Read more stories on Hashnode
Articles with this tag
In this blog post will learn about Rate Limiting and how we can implement it in Asp.net Core Minimal API. Rate Limiting What is it? Rate limiting is...
Caching provides a better customer experience and makes applications performant and scalable. If the result (query, page, etc.) is cached, the next...
Background tasks are services that aren’t meant to execute during a regular flow of a typical application, such as sending email confirmations or...
This article describes logging in Asp.Net Core Minimal APIs. Logging Logging is a means of tracking events that happen when some software runs....
API Versioning API versioning is the practice of managing changes to an API without breaking the client’s applications when new versions are...
In this article I created a custom middleware for securing an Api. For this one let's change the implementation using a custom authentication...