-
-
Notifications
You must be signed in to change notification settings - Fork 182
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
TransformMany with Refresh #173
Comments
I recommend using an observable collection as the API explicitly states that the contents of the collection can change. However for completeness it would be best to add the transformOnRefresh overload. |
I stumbled upon a similar issue in my code where an My PR simply makes sure that the exception is not thrown, but the desired functionality from my point of view is that the |
@samirem, current commits in PR is only for cache. |
I ended up trying to fix list's behavior in the same pull request |
Hello, I have an issue with TransformMany:
The test will fail.
Because TransformMany on
Refresh
doesn't add or remove items it only propagatesRefresh
.TransformMany internally uses Transform with
transformOnRefresh = false
by default.I can see that changing
Relations
fromIEnumerable
toObservableCollection
will fix it and there will be no need for explicitRefresh
.Are there other ways to do it?
Probably add
transformOnRefresh
parameter to TransformMany?The text was updated successfully, but these errors were encountered: