DbConnectorCommand.QueryAsync<T> method (1 of 2)

Executes the query, converting each record to the specified type.

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

See Also


DbConnectorCommand.QueryAsync<T> method (2 of 2)

Executes the query, converting each record to the specified type with the specified delegate.

public ValueTask<IReadOnlyList<T>> QueryAsync<T>(Func<IDataRecord, T> map, 
    CancellationToken cancellationToken = default)

See Also