DataProjectorToObjectListT Constructor (IList, ProjectionRowDelegateT, DictionaryString, Int32) |
Namespace:
SD.LLBLGen.Pro.QuerySpec
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax public DataProjectorToObjectList(
IList destination,
ProjectionRowDelegate<T> projectorFunc,
Dictionary<string, int> nameToIndexMap
)
Public Sub New (
destination As IList,
projectorFunc As ProjectionRowDelegate(Of T),
nameToIndexMap As Dictionary(Of String, Integer)
)
Parameters
- destination
- Type: System.CollectionsIList
The destination. - projectorFunc
- Type: SD.LLBLGen.Pro.QuerySpecProjectionRowDelegateT
The projector func. Can be null, in which case it's autogenerated from the datareader in the Initialize method. - nameToIndexMap
- Type: System.Collections.GenericDictionaryString, Int32
The name to index map.
See Also