dotnet Testing your dotnet applications - Boilerplate First post in a series that will show you different ways of how to test your ASP.NET/Dotnet Core applications. This post shows a simple integration test for an API endpoint
asp.net core Model bind multiple sources to a single class in ASP.NET Core How to model bind multiple sources to a single class
postgres Gotcha when using Postgres, NodaTime, Ef Core and Dapper We had a really annoying bug regarding NodaTime and Dapper. Our integration tests worked but not when calling the API via Postman...
httpclient HttpClient - DelegatingHandler - Correlation Id Shows two different ways of forwarding correlation ids when using HttpClient in dotnet core
asp.net core Beware of potential XSS injections when using ProblemDetails in ASP.NET Core The default behaviour of ProblemDetails in ASP.NET Core does not escape the user input, this can lead to XSS injections