We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108e07b commit 73e86bfCopy full SHA for 73e86bf
src/NHibernate/Util/JoinedAsyncEnumerable.cs
@@ -17,7 +17,7 @@ public JoinedAsyncEnumerable(IAsyncEnumerable<T>[] asyncEnumerables)
17
public IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken cancellationToken = default)
18
{
19
return new JoinedAsyncEnumerator(
20
- _asyncEnumerables.Select(o => o.GetAsyncEnumerator()).ToArray(),
+ _asyncEnumerables.ToArray(o => o.GetAsyncEnumerator()),
21
cancellationToken);
22
}
23
0 commit comments