-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
Consider the following code in method that needs async counterpart:
CriteriaLoader[] loaders = ...
var loadedLists = loaders.Select(l => l.List(this)).ToList();I expect this part to be converted in to something like:
CriteriaLoader[] loaders = ...
var loadedLists = loaders.Select(async l => await l.ListAsync(this, cancellationToken).ConfigureAwait(false)) ...?But current behavior keeps this LINQ expression as is.