Policy-Based Authorization in ASP.NET Core
What is policy-based authorization and how to set up policy-based authorization with handlers and policies defined and registered
What is policy-based authorization and how to set up policy-based authorization with handlers and policies defined and registered
What is role-based authorization? As the name says, role-based authorization authorizes a user based on the role defined to the user. Creating roles and users… Read More »Role-based Authorization 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
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
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
In this post, I’ll explain how a request comes into the ASP.NET Core web server and how it returns a response to the browser. If… Read More »How does ASP.NET Core processes a request?