In this post, let’s have a look at the power of Distributed Tracing in .NET Isolated Azure Durable Functions. This is one of the new features that got […]
In a previous post, I wrote about creating Azure Container Apps using az containerapp create –kind functionapp (az functionapp create VS az containerapp create –kind functionapp). One of the main advantages […]
In the last a couple of months, we had 2 incidents where Azure Document Intelligence Service in East US region has degraded performance. Because of that, […]
With .NET 10 Preview 4 onwards, you can now use JsonPatch with System.Text.Json in ASP.NET Web API. Currently if you need to use JsonPatch you need to […]
Back home now after what was meant to be a relaxing holiday – unfortunately, it took quite a turn with some unexpected hospital stays both overseas […]
I recently wanted to have an ASP.NET Core Web API endpoint, that accepts data via [FromForm] and the payload contains a Polymorphic Type. For an example consider the following […]
In this post, let’s see a nice feature that is already available with EF Core 10.0 Preview. For an example, consider the following DbContext Entities. public record Customer{ public int Id { get; set; } public string Name { get; set; }} public record&
ASP.NET Core 10.0, now supports OpenAPI specification in YAML format. YAML also supports multi-line strings, which can be useful for long descriptions. To configure an app to serve the […]
From ASP.NET Core 10.0, the default OpenAPI version would be 3.1.x. Prior to ASP.NET Core 10.0, the default OpenAPI version was 3.0.x for as long as I could remember. OpenAPI: […]