DbConnectorResultSets.ReadAsync<T> method (1 of 2)

Reads a result set, converting each record to the specified type.

public ValueTask<IReadOnlyList<T>> ReadAsync<T>(CancellationToken cancellationToken = default)

See Also


DbConnectorResultSets.ReadAsync<T> method (2 of 2)

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)

See Also