Dependency Injection in ASP.NET Core with Examples Krunal Shah2022-12-22T04:40:00-08:00What is Dependency injection? Dependency injection is a design pattern which is used to remove hard code dependency from application in ASP....Read More
Magic strings are string values that must be specified in the code Krunal Shah2022-11-24T05:58:00-08:00 Clean Code Tip 💡 Magic strings are string values that must be specified in the code ⏩ In most cases, magic strings end up almost alwa...Read More
Ordering syntax simplified in .NET 7 Krunal Shah2022-11-24T05:34:00-08:00 LINQ Tip 💡 Ordering syntax simplified in .NET 7 ⏩ Earlier versions of .NET required us to provide the ordering criteria using the Ord...Read More
How do you handle bulk data insertion in your code? Krunal Shah2022-11-24T05:33:00-08:00 LINQ Tip 💡 How do you handle bulk data insertion in your code? ⏩ We can use AddRange for bulk data insertion for better performance ⏩...Read More
A new access modifier is introduced in C# 11 Krunal Shah2022-11-24T05:31:00-08:00 C# 11 New Feature💡 A new access modifier is introduced in C# 11 🔥 ⭐ "file" is new access modifier introduced in C# 11 ⏩ ...Read More
Do you want to control the amount of traffic your API or Web Application receives? Krunal Shah2022-11-24T05:26:00-08:00 Do you want to control the amount of traffic your API or Web Application receives? .NET 7 introduces the Rate Liming Middleware, which c...Read More
Cookie Authentication In ASP.net Core Krunal Shah2020-06-13T08:06:00-07:00 This article covers Cookie Authentication in ASP.net Core 1.X. While much is the same in subsequent versions, there are a couple of small ...Read More