Interface IDataRecordMapper<T>
Interface for mapping System.Data.IDataRecord to a T.
Namespace: IRM.Data
Assembly: IRM.dll
Syntax
public interface IDataRecordMapper<T>
where T : class
Type Parameters
|
T
|
Methods
Map(IDataRecord)
Maps a System.Data.IDataRecord to a T.
Declaration
T Map(IDataRecord dataRecord)
Parameters
|
System.Data.IDataRecord
dataRecord
|
Returns
|
T
An instance of a |