You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very convenient to have a Select(Func<TInput, Task<TResult>>) out of the box.
The only way to do this is by creating your own Select function or by using .SelectMany(x => ConvertItemAsync(x).ToAsyncEnumerable()), which probably isn't as optimized as it could've been?