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

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)

See Also


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

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)

See Also