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
Let’s say we have these fruits and we want to print all fruits until we see an Avacado. We could try something like this with… Read More »Break out of forEach loop in JavaScript
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