Contextual Feature Filters in ASP.NET Core
While custom feature filters solve the problem of isolating the feature to a specific group or individual it may not be appropriate to rely on… Read More »Contextual Feature Filters in ASP.NET Core
While custom feature filters solve the problem of isolating the feature to a specific group or individual it may not be appropriate to rely on… Read More »Contextual Feature Filters in ASP.NET Core
The evolution of microservices greatly impacted how we think, write and manage applications in the cloud environment. The existing monoliths are being migrated slowly to… Read More »Tips for converting existing ASP.NET applications to ASP.NET Core
While feature flags allow us to turn a feature on/off in real-time without any code changes. Feature filters go one level deep on the feature… Read More »How to create a custom feature filter in ASP.NET Core
Feature management in ASP.NET Core is released in 2019. Some of you may know about the feature flags and some may not even be heard of them.… Read More »The Comprehensive Guide To Feature Management In ASP.NET Core
C# 3.0 introduces extension methods. These are one of the most powerful features that helped C# as a language take a significant leap in the… Read More »Extension Methods And Their Benefits In Csharp
In this post, we’ll see how to read the configuration file using the options pattern. The options pattern is recommended to read the app configuration… Read More »Strongly Typed Configurations with Options Pattern
In the previous post, we saw what are Minimal APIs and how we can create them in ASP.NET Core 6. In this post, we’ll see… Read More »Refactoring Minimal APIs with Carter
In this post, we’ll see what a REST Client for Visual Studio 2022 is and what we can do with it. The REST Client is… Read More »REST Client For Visual Studio 2022
what are Minimal APIs in ASP.NET Core 6 and how they are created. We’ll also examine what is difference between Minimal APIs and traditional mvc controllers. We’ll also see the limitations of minimal apis and when to use them
What are Guard Clauses? A guard in general is to protect against the damage that may happen in the future. In computer programming, a guard… Read More »What are Guard Clauses in .NET