Reads a result set, converting each record to the specified type.
public ValueTask<IReadOnlyList<T>> ReadAsync<T>(CancellationToken cancellationToken = default)
Reads a result set, converting each record to the specified type with the specified delegate.
public ValueTask<IReadOnlyList<T>> ReadAsync<T>(Func<IDataRecord, T> map,
CancellationToken cancellationToken = default)