dotnet Automatically format your dotnet code using dotnet format - GitHub Actions Use dotnet format in your GitHub Actions pipelines to automatically format your code and avoid noise in pull requests
c-sharp System.Text.Json and immutable types - Deserialization This post shows how to serialize and deserialize immutable C# domain objects without using any attributes.
asp.net core Don't let ASP.NET Core set empty strings to null when posting forms This post highlights how ASP.NET Core converts empty strings to null in form submissions and demonstrates how to prevent this behavior.
dotnet Keeping your nuget packages in check It's important to keep your NuGet dependencies up to date. In this post, I'll share some tips and tricks for managing package updates effectively.
c-sharp Use the implicit operator to reduce noise in your code This post demonstrates how to simplify cache key handling in C# by using typed objects and the implicit conversion operator, allowing automatic string conversion without manual method calls.