jonwagner / Insight.Database

Fast, lightweight .NET micro-ORM
Other
861 stars 145 forks source link

Need GetReaderAsync and GetReaderSqlAsync extension methods for IDbConnection #429

Closed lawrencek76 closed 4 years ago

lawrencek76 commented 4 years ago

Describe the feature

Expose async versions of the extenson methods GetReader, GetReaderSql off of an IDbConnection It would be useful to be able to able to get an async datareader that used ExecuteReaderAsync similar to the current GetReader, GetReaderSql in DBConnectionExtensions

Additional context

This simplifies creating fully async bulkcopy operations.