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 […]
From Microsoft SQL Server 2025 (17.x) which is already available in Preview, we now have a new Data Type: json. EF Core 10.0 now fully supports the json data […]