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 :
Azure Document Intelligence client library for .NET, Azure.AI.DocumentIntelligence 1.0.0 was released few weeks ago with some significant refactoring to existing beta packages, and it has some breaking changes. […]
In this post, let’s have a look at a breaking change in EF Core 9.0 related to migration idempotent scripts. Consider the following scenario. Say we […]
In this post, let’s have a look EF.Parameter<T>(T) method that was introduced with EF 9.0. Consider the following simple LINQ query. async Task<List<Employee>> GetEmployees(int employeeId){ return await context.Employees .Where(e => e.Id ==