May 4, 2025

EF Core 10.0: Simplified LeftJoin and RightJoin

In this post, let’s see a nice feature that is already available with EF Core 10.0 Preview. For an example, consider the following DbContext Entities. public record Customer{    public int Id { get; set; }     public string Name { get; set; }} public record&
December 29, 2024

EF Core 9.0: Introducing EF.Parameter(T)

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 ==