Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit 1db3136

Browse files
committed
Added missing ConfigureAwait(false)
1 parent ac9902c commit 1db3136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/LinqToDB.EntityFrameworkCore/Internal/LinqToDBForEFQueryProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ async IAsyncEnumerable<T> EnumerateAsyncEnumerable([EnumeratorCancellation] Canc
163163
{
164164
var asyncEnumerable = await QueryProvider.ExecuteAsyncEnumerable<T>(Expression, ct)
165165
.ConfigureAwait(false);
166-
await foreach (var item in asyncEnumerable.WithCancellation(ct))
166+
await foreach (var item in asyncEnumerable.WithCancellation(ct).ConfigureAwait(false))
167167
{
168168
yield return item;
169169
}

0 commit comments

Comments
 (0)