SortAndBind with resorter #957
Answered
by
JakenVeina
aguahombre
asked this question in
Q&A
-
Is there a way to use SortAndBind with a resorter as per the obsolete Sort method? |
Beta Was this translation helpful? Give feedback.
Answered by
JakenVeina
Nov 3, 2024
Replies: 1 comment 1 reply
-
The following overload would do the trick, yeah? public static IObservable<IChangeSet<TObject, TKey>> SortAndBind<TObject, TKey>(
this IObservable<IChangeSet<TObject, TKey>> source,
IList<TObject> targetList,
IObservable<IComparer<TObject>> comparerChanged)
where TObject : notnull
where TKey : notnull; |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
aguahombre
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following overload would do the trick, yeah?