Latest Posts On Code Maze

Extreme LINQ Performance Boost in .NET 7

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.

To download the source code for this article, you can visit our GitHub repository.
If you had the luck to build the product from scratch, you've...

Web API Analyzers in ASP.NET Core

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

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

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

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...

C# String Interpolation

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 Execute Stored Procedures With EF Core 7

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...