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 […]
I was recently invited on a podcast with Grey Matter to share my experience, and thoughts from a development perspective. We discussed many topics. Naturally AI […]
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 […]
My new course “Aligning Generative AI with Business Cases” is LIVE on top training platform Pluralsight ! In this course, you’ll learn how to identify, […]
Recently saw an issue in one of our applications that Configures JsonSerializerOptions as part of the builder (FunctionsApplicationBuilder, WebApplicationBuilder etc). To give a minimal example, say we want to configure JsonSerializerOptions.WriteIndented to true (in configuration […]
In this post let’s have a look at another feature in EF Core 9.0. Consider the following code example. public record Employee{ public int Id { get; set; } public string Name { get; set; } private class EmployeeConfiguration :