.NET public 4 min read Visualize API response directly in Visual Studio with .http file Pierre Belin May 28, 2023 Checking REST API endpoints Building a REST API is the most common way of exposing data from a web application.…
.NET public 5 min read Are compiled queries really efficient on C# EF Core? Pierre Belin May 9, 2023 Entity Framework and Dapper are usually compared to determine which is the best ORM on .NET. Both have their own…
.NET public 6 min read The thing to understand about how Visual Studio integrates debugging in Docker Compose Pierre Belin Apr 16, 2023 C# IDEs are often compared, mainly between Visual Studio and Rider on code related features. For the use of Docker…
.NET public 3 min read Mastering complex objects comparison using SequenceEqual on C# Pierre Belin Mar 20, 2023 One of the most useful features of .NET is LINQ (Language-Integrated Query), a component that provides a set of standard…
.NET public 4 min read xUnit shared context management for C# tests Pierre Belin Feb 23, 2023 Today we will find out how to use the shared context with the xUnit library! Developers must have to pay…
Tests public 6 min read Create efficient C# tests with the xUnit library Pierre Belin Feb 6, 2023 Among all C# test libraries, xUnit is one of the most used by .NET developers. It's simple to use, and…
Tests public 5 min read Compare object values in xUnit C# with Verify Pierre Belin Nov 18, 2022 The most common way to test the values of an object is to use assertions for each property to check…
.NET public 3 min read Use C# naming conventions and set it in Visual Studio Pierre Belin Nov 1, 2022 Naming conventions Microsoft has defined the C# naming conventions to create standards for all .NET developers. It mainly specifies the…
.NET public 2 min read Create extensions methods to improve C# readability Pierre Belin Sep 30, 2022 Method extensions help developers greatly improve the readability of C#. Method extensions allow developers to add new methods to the…
.NET public 2 min read Improve queries reading performances with AsNoTracking on C# EF Core Pierre Belin Aug 21, 2022 What is AsNoTracking Entity Framework Core is a massive .NET tool to facilitate database queries. If you delve into it,…
.NET public 5 min read Reference types are no longer null by default - C# 8.0 Pierre Belin Aug 13, 2022 I hate NullReferenceException But one thing I hate the most is checking variables when they are not supposed to be…
GraphQL public 8 min read Benefits and cons - GraphQL #1 Pierre Belin Jan 23, 2022 If you never heard about GraphQL or never used it: GraphQL is an open-source data query and manipulation language for…