#net
Read more stories on Hashnode
Articles with this tag
I remember the days when managing NuGet packages across multiple projects was a real pain. You know what I mean - you open a large solution and find...
Most APIs follow a simple pattern. The client sends a request. The server does some work. The server sends back a response. This works well for fast...
Caching is essential for building fast, scalable applications. ASP.NET Core has traditionally offered two caching options: in-memory caching and...
Idempotency is a crucial concept for REST APIs that ensures the reliability and consistency of your system. An idempotent operation can be repeated...
When developing HTTP APIs, providing consistent and informative error responses is crucial for a smooth developer experience. Problem Details in...
As your application grows, you might find yourself considering a move from a modular monolith to microservices. This transition isn't just a technical...