-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Breaking change]: Fix type of the IComparer<T> on System.Linq.Queryable MinBy and MaxBy #45535
Comments
This is technically both a binary and a source breaking change since the method's signature will be altered, but the previous one was broken. 🤔 |
Added those checkmarks :) |
We should hold off from taking any action until any changes are made to the product itself. |
Reserved |
Thanks. Closing this issue since I don't believe obsoleting an API counts as a breaking change. |
@eiriktsarpalis We document obsoletions as breaking changes all the time. If you want to reopen, go right ahead! 🙂 |
Documentation completed at #45565 |
Description
Change the generic type of the
IComparer
used in theMinBy
andMaxBy
in System.Linq.Queryable to the correctTKey
instead of the current (and wrong)TSource
.Specifically, change wrong use of
IComparer<TSource>
for comparerto the correct
IComparer<TKey>
for comparerVersion
.NET 10 Preview 4
Previous behavior
The versions of
MaxBy
andMinBy
in System.Linq.Queryable that accepted a custom comparer were declared as taking anIComparer<TSource>
when they SHOULD have beenIComparer<TKey>
to match what thekeySelector
was projecting.Prior attempts to use a custom comparer would have only worked if
TSource
andTKey
were the same type (e.g. bothstring
orint
). Other type combinations would result in anSystem.IndexOutOfRangeException
as documented here in Dotnet Runtime Issue #113878 because the correct backingMaxBy
or backingMinBy
Method
could not be located.Note, this was never a compile-time error, it would only fail at runtime.
Examples of this working correctly the
TSource
andTKey
types are the both same type:New behavior
You can use a different type for
TSource
andTKey
in theMaxBy
andMinBy
that accepted a custom comparer.This means that any use will work correctly (as long as there is an
IComparer<TKey>
) and will no longer throw anSystem.IndexOutOfRangeException
.Type of breaking change
Reason for change
The original implementation was incorrect see comment on Dotnet Runtime Issue #113878 as specified here and implemented here
Recommended action
None required, things will just quietly work now.
Feature area
LINQ
Affected APIs
System.Linq.Queryable.MinBy
andSystem.Linq.Queryable.MaxBy
Linq extension methods.The text was updated successfully, but these errors were encountered: