Extreme LINQ Performance Boost in .NET 7
.NET 7 has brought us a lot of great new features and improvements, including some pretty excellent LINQ performance improvements.
Web API Analyzers in ASP.NET Core
In this article, we are going to discuss the Web API Analyzers in ASP.NET Core. Let's get going. What are Web API Analyzers? ASP.NET Core Web API...
Working With Collections in .NET
When we develop software applications, we may need to create, store and manipulate groups of related objects. In this article, we will discuss the various ways in which we can perform such operations using different collections in .NET. In this post by Damien Bowden, you can learn how to use...
Generating Source Code Documentation With DocFx
In this article, we are going to discuss the topic of source code documentation. We'll discuss why generating source code documentation is important and how DocFx helps with this task. In this article by Anuraj Parameswaran you can...
Producer-Consumer Applications With .NET Channels
When building applications, usually we need to create long-running background tasks, that can be sent to one or more background processes. This is known as a producer/consumer pattern. For these scenarios, we need something more robust than a first-in, first-out...
Difference Between Is and Equality Operators in C# – “is null” vs “== null”
In this article, we’re going to talk about the difference between the usage of the "is" and equality operators when checking for a null value.
C# String Interpolation
Very early in the history of programming, we've seen the need to use text on a machine that works with numbers. Over many decades we devised many different ways to construct and analyze text for better understanding by both humans and machines. String interpolation,...
How to Check if a String Ends With a Number in C#
Checking if a string ends with a number in C# is a very common operation. In this article, we are going to show various ways in which we can do this. [sc name="github"...
How to Execute Stored Procedures With EF Core 7
In this article, we will see how to use stored procedures in Entity Framework Core 7. Although Entity Framework and LINQ provide a simple way to work with the data, stored procedures still have their place when considering data access and manipulation. [sc...