I was upgrading an Azure Durable Function Application from .NET 9 to .NET 10. Our Azure DevOps pipeline have a job that executes set of integration tests […]
Hope everyone’s having fun with .NET 10, C# 14 and Visual Studio 2026 from the .NET Conf 2025 announcements. I was upgrading a project to .NET 10 and […]
In this post, let’s have a look at some nice improvements in Global Query Filters in EF Core 10.0. We can use Global Query Filters at an entity level […]
In this post, let’s explore a great new enhancement available in EF Core 10.0. EF Core 10.0 now supports partially updating JSON columns with ExecuteUpdate/ExecuteUpdateAsync.Let’s consider the following DbContext.public class Customer{ public int Id { get; set; } […]
I recently seen this issue in a .NET Isolated Azure Function App, it was writing custom logs at Information level to Application Insights, but the logs aren’t there. […]
In this post let’s see how to enable Open API Support in .NET Isolated Azure Functions. Long time ago I blogged about Introducing In-Process Azure Functions OpenAPI Extension. And […]