In this post, let’s look at how we can use multiple output bindings with HTTP-triggered Azure Functions running on the isolated worker model. When working with […]
When you are upgrading your .NET application to .NET 10 and using Docker, you might run into build errors where certain apt-get packages are no longer available.Starting with […]
In this post, let’s see how to send emails using Azure Communication Services (ACS) in a .NET application. With SendGrid’s free tier being discontinued, ACS has […]
DefaultAzureCredential is the recommended approach for authenticating with Azure services, and in most cases, we rarely rely on access keys anymore, authentication is typically handled through managed […]
In this post, let’s have a look at how to run Azure Functions locally with Production app settings and why some explicit configuration is required compared […]
When working with Azure Storage Blobs in .NET, you will often need to generate Shared Access Signature (SAS) URIs to provide temporary, secure access to your […]
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. […]