-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
area-System.Linqbugin-prThere is an active PR which will close this issue when it is mergedThere is an active PR which will close this issue when it is merged
Milestone
Description
public static TSource? MaxBy<TSource, TKey>(this IQueryable<TSource> source, Expression<Func<TSource, TKey>> keySelector, IComparer<TSource>? comparer) |
It's entirely possible nobody has ever used these overloads as I am unclear what an IQueryable implementation would do with the comparer, however the analogous Enumerable methods appear to correctly accept an IComparer<TKey>:
public static TSource? MaxBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector, IComparer<TKey>? comparer) |
Metadata
Metadata
Assignees
Labels
area-System.Linqbugin-prThere is an active PR which will close this issue when it is mergedThere is an active PR which will close this issue when it is merged