Skip to content

Instantly share code, notes, and snippets.

View joakimriedel's full-sized avatar

Joakim Riedel joakimriedel

View GitHub Profile
@joakimriedel
joakimriedel / Program.cs
Last active August 10, 2021 23:38
EF Core bug with null check in nested projection
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Diagnostics;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace EfCoreBug
@joakimriedel
joakimriedel / Program.cs
Created September 6, 2018 12:01
AutoMapper bug with ProjectTo using nested projections containing FirstOrDefault
using AutoMapper;
using AutoMapper.QueryableExtensions;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;