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.IResultSetMapper< TResult > Interface Template Reference

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...
 

Detailed Description

Represents the operation of mapping a IDataReader to an enumerable of TResult .

Template Parameters
TResultThe element type this result set mapper will be mapping to.

Member Function Documentation

◆ MapSet()

IEnumerable<TResult> Microsoft.Practices.EnterpriseLibrary.Data.IResultSetMapper< TResult >.MapSet ( IDataReader  reader)

When implemented by a class, returns an enumerable of TResult based on reader .

Parameters
readerThe IDataReader to map.
Returns
The enumerable of TResult that is based on reader .

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