Dependency Injection vs Dependency Inversion vs Inversion of ControlSeptember 16, 2024Articles, Design PatternsIn this article, let us pit Dependency Inversion, IoC and Injection against one another and see how they are related and differ with each other.
How to use NDepend for Code Analysis – My ExperienceJuly 14, 2024Articles, ASP.NET CoreI got a chance to try and play around with NDepend, a popular Code Analysis tool for .NET and here's how I integrated and my thoughts on it.
5 reasons why I love VS Code – Tips and TricksFebruary 4, 2024ArticlesIn this article, let me share with you 5 reasons why I prefer using Visual Studio Code and 12 tips and tricks for using it
How to use AWS Parameter Store with ASP.NET CoreFebruary 4, 2024Articles, AWSIn this detailed article, let us discuss what is AWS Systems Manager Parameter Store and how to integrate with ASP.NET Core
Simple Differences b/w ViewBag and ViewData in ASP.NET CoreFebruary 4, 2024Articles, ASP.NET CoreIn this brief article, let us discuss the differences between ViewBag and ViewData and how they are used in ASP.NET Core MVC
How to deploy ASP.NET Core Web API to KubernetesJanuary 16, 2024Articles, ASP.NET Core, KubernetesIn this article, we'll discuss about Kubernetes, a popular container orchestration engine and learn how we can deploy an ASP.NET Core Web API to it.
How to do Pagination in ASP.NET Core Web APIJanuary 16, 2024Articles, ASP.NET CoreIn this article, let's look at how we can design an API that uses pagination on its query results using ASP.NET Core and IQueryable over Entity Framework Core
API Versioning in ASP.NET Core with Swagger – Ultimate GuideJanuary 16, 2024Articles, ASP.NET Core2 CommentsIn this detailed article, let us explore how we can implement API Versioning in ASP.NET Core and integrate with Swagger UI with detailed example.
How I tested my JWT token params in ASP.NET CoreJanuary 16, 2024API Security, Articles, ASP.NET CoreSay you have to validate a JWT token based on the parameters supplied from an external service that varies for every incoming scheme.