How to concat the outputs of two IncrementalValueProviders into a single IncrementalValueProvider? #80069
-
I want to concat the outputs of two IncrementalValueProviders into a single IncrementalValueProvider, like this: |
Beta Was this translation helpful? Give feedback.
Answered by
CyrusNajmabadi
Aug 28, 2025
Replies: 1 comment
-
Do a .Combine between them to make an |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
CyrusNajmabadi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do a .Combine between them to make an
IncrementalValueProvider<(ImmutableArray<T> Left, ImmutableArray<T> Right)>
. Then do a.SelectMany(t => t.Left.AddRange(t.Right))