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 IDataRecord to TResult . More...
Public Member Functions | |
TResult | MapRow (IDataRecord row) |
When implemented by a class, returns a new TResult based on row . More... | |
Represents the operation of mapping a IDataRecord to TResult .
TResult | The type this row mapper will be mapping to. |
TResult Microsoft.Practices.EnterpriseLibrary.Data.IRowMapper< TResult >.MapRow | ( | IDataRecord | row | ) |
When implemented by a class, returns a new TResult based on row .
row | The IDataRecord to map. |
Implemented in Microsoft.Practices.EnterpriseLibrary.Data.ReflectionRowMapper< TResult >.