The current implementation of the async DbDataReader extension methods (such as ToListAsync), do not offer overloads with cancellation tokens.
This makes it impossible to control the lifetime of the underlying DbDataReader.ReadAsync and DbDataReader.IsDBNullAsync through an external cancellation token.
The current implementation of the async
DbDataReader
extension methods (such asToListAsync
), do not offer overloads with cancellation tokens.This makes it impossible to control the lifetime of the underlying
DbDataReader.ReadAsync
andDbDataReader.IsDBNullAsync
through an external cancellation token.