Please add DefaultIfEmpty as Extension: ``` public static object DefaultIfEmpty(this IQueryable source) { Check.NotNull(source, nameof(source)); return source.Provider.Execute( Expression.Call( typeof(Queryable), "DefaultIfEmpty", new Type[] { source.ElementType }, source.Expression)); } ```
Please add DefaultIfEmpty as Extension: