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 […]
I am partnering with Pluralsight again to bring you another new course soon. The course is called : Vector Databases & Embeddings for Developers. This course […]
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 […]
Skip months of foundational development and launch your SaaS idea in weeks, not months I’ve watched countless brilliant SaaS ideas die in the “foundational development” phase. […]
With ASP.NET Core 10.0, we now have built in validation support for Minimal APIs for request data in following. Route parameters, Query Strings Header Request body If […]
In this post, let’s see how we can POST multipart/form-data with files and fields using a HTTP action in a Consumption Azure Logic App. I have the following Test […]