Enterprise Library Data Access Application Block
7.0-rc1
The Data Access Application Block abstracts the actual database you are using, and exposes a collection of methods that make it easy to access that database and to perform common tasks.
|
Represents the operation of mapping a IDataReader to an enumerable of TResult . More...
Public Member Functions | |
IEnumerable< TResult > | MapSet (IDataReader reader) |
When implemented by a class, returns an enumerable of TResult based on reader . More... | |
Represents the operation of mapping a IDataReader to an enumerable of TResult .
TResult | The element type this result set mapper will be mapping to. |
IEnumerable<TResult> Microsoft.Practices.EnterpriseLibrary.Data.IResultSetMapper< TResult >.MapSet | ( | IDataReader | reader | ) |
When implemented by a class, returns an enumerable of TResult based on reader .
reader | The IDataReader to map. |