LINQ for beginners: pick the right methods! 2023-01-10 5 min read Blog LINQ is a set of methods that help developers perform operations on sets of items. There are tons of methods - do you know which is the one for you? Continue reading
How to customize Swagger UI with custom CSS in .NET 7 2022-12-16 4 min read Blog Exposing Swagger UI is a good way to help developers consume your APIs. But don’t be boring: customize your UI with some fancy CSS Continue reading
PriorityQueues on .NET 7 and C# 11 2022-12-12 5 min read Blog A PriorityQueue represents a collection of items that have a value and a priority. Now this data structure is built-in in dotNET! Continue reading
How to create an API Gateway using Azure API Management 2022-11-22 5 min read Blog In a microservices architecture, an API Gateway hides your real endpoints. We will create one using Azure API Management Continue reading
How to deploy .NET APIs on Azure using GitHub actions 2022-11-08 7 min read Blog Building APIs with .NET is easy. Deploying them on Azure is easy too, with GitHub Actions! Continue reading
3 (and more) ways to set configuration values in .NET 2022-10-18 6 min read Blog Every application relies on some configurations. Many devs set them up using only the appsettings file. But there’s more! Continue reading
The 2 secret endpoints I create in my .NET APIs 2022-10-04 7 min read Blog In this article, I will show you two simple tricks that help me understand the deployment status of my .NET APIs Continue reading