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

Reads a result set, reading one record at a time and converting it to the specified type.

public IEnumerable<T> Enumerate<T>()

See Also


DbConnectorResultSets.Enumerate<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 IEnumerable<T> Enumerate<T>(Func<IDataRecord, T> map)

See Also