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: […]
Our builds started failing today and it’s Microsoft Servicing Tuesday even though it’s Wednesday over here.We are using ubuntu-latest in almost all our builds and started seeing the […]
In my previous post I wrote about Migrating Azure Durable Function App to Use Durable Task Scheduler: Running Locally. And in this post, let’s see how […]
Durable Task Scheduler (DTS) is the latest addition to Azure Durable Functions. The public preview is announced a couple of weeks ago, and you can find […]
If you are using Azure DevOps classic releases, you might have noticed, that we still don’t have Runtime stack support for DOTNET-ISOLATED|9.0 in Azure Functions Deploy task. Azure Functions Deploy […]
In this post let’s see how we can configure Authentication in an ASP.NET Core Web API with Azure AD B2C and most importantly using explicit configuration. The […]