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

Executes the query, reading every record and converting it to the specified type.

public IReadOnlyList<T> Query<T>()

See Also


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

Executes the query, reading every record and converting it to the specified type with the specified delegate.

public IReadOnlyList<T> Query<T>(Func<IDataRecord, T> map)

See Also