Skip to content

Commit

Permalink
Use token for NonQueryResultAsync
Browse files Browse the repository at this point in the history
   - Affects ExecuteDeleteAsync(token)
   - Affects ExecuteUpdateAsync(token)

Fixes [dotnet#31448](dotnet#31448)
  • Loading branch information
dsgordeev committed Aug 12, 2023
1 parent ffc31ed commit 36d7ba3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ protected virtual Expression VisitNonQuery(NonQueryExpression nonQueryExpression
state.commandSource),
cancellationToken);
},
null);
null,
relationalQueryContext.CancellationToken);
}
finally
{
Expand Down

0 comments on commit 36d7ba3

Please sign in to comment.