.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 4 min read Navigating Non-Nullable Reference Types in C#: Enhance Code Safety Pierre Belin Aug 13, 2022 Discover how C#'s shift to non-nullable reference types is revolutionizing code safety and reliability. Learn the essentials to leverage this update, minimizing null errors and refining your software development process for enhanced efficiency.
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…
.NET public 7 min read Produce a parser for complex strings with ANTLR Pierre Belin Nov 13, 2021 Facebook allows multiple features to produce a more friendly post like @mention to tag your friends. Imagine they want to…
public 3 min read Quickly create entities logs with onFlush method on Symfony Pierre Belin Aug 1, 2021 The more I develop, the more I'm logging everything I code. These can be logs for the backend,…
.NET public 5 min read Get API history in 5 min with a console application .NET Core C# Pierre Belin Jul 2, 2021 One of the most important parts of data analysis is getting data (amazing, right?). But not just any data, a…
Security public 9 min read Secure Symfony API end-to-end with x509 certificates Pierre Belin Jun 16, 2021 Symfony is an amazing framework to quickly create API. It contains the tools you need to secure your API for…