Reads a result set, reading one record at a time and converting it to the specified type.
public IAsyncEnumerable<T> EnumerateAsync<T>(CancellationToken cancellationToken = default)
Reads a result set, reading one record at a time and converting it to the specified type with the specified delegate.
public IAsyncEnumerable<T> EnumerateAsync<T>(Func<IDataRecord, T> map,
CancellationToken cancellationToken = default)