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
You can define temporary variables in LINQ query expression 🔥 Krunal Shah2022-11-24T05:41:00-08:00LINQ Tip 💡 You can define temporary variables in LINQ query expression 🔥 ⏩ Use the "let" keyword in query expressions to dec...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
Time accuracy increased in .NET 7 Krunal Shah2022-11-24T05:29:00-08:00 .NET 7 Update💡 Time accuracy increased in .NET 7 🔥 ⭐ Microseconds and nanoseconds have been added to the DateTime, TimeStamp, TimeOn...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