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.
Microsoft.Practices.EnterpriseLibrary.Data.IRowMapper< TResult > Interface Template Reference

Represents the operation of mapping a IDataRecord to TResult . More...

Inheritance diagram for Microsoft.Practices.EnterpriseLibrary.Data.IRowMapper< TResult >:
Microsoft.Practices.EnterpriseLibrary.Data.ReflectionRowMapper< TResult >

Public Member Functions

TResult MapRow (IDataRecord row)
 When implemented by a class, returns a new TResult based on row . More...
 

Detailed Description

Represents the operation of mapping a IDataRecord to TResult .

Template Parameters
TResultThe type this row mapper will be mapping to.
See also
ReflectionRowMapper<TResult>

Member Function Documentation

◆ MapRow()

TResult Microsoft.Practices.EnterpriseLibrary.Data.IRowMapper< TResult >.MapRow ( IDataRecord  row)

When implemented by a class, returns a new TResult based on row .

Parameters
rowThe IDataRecord to map.
Returns
The instance of TResult that is based on row .

Implemented in Microsoft.Practices.EnterpriseLibrary.Data.ReflectionRowMapper< TResult >.


The documentation for this interface was generated from the following file: