This message was deleted.
# dotnet
s
This message was deleted.
t
In C# you can do:
Copy code
Output<ImmutableArray<x>> xs = ...;
InputList<string> ids = xs.Apply(v => v.Select(x => x.Id));
In F# you’d need to convert to input list explicitly
👍 1