| ProjectionLambdaTransformerCreateProjectorFuncT Method  | 
 
            Creates the projector func which can be used to instantiate a new instance of T from a ProjectionRow instance.
            
 
    Namespace: 
   SD.LLBLGen.Pro.QuerySpec
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntaxpublic ProjectionRowDelegate<T> CreateProjectorFunc<T>(
	string[] fieldPerOrdinal
)
Public Function CreateProjectorFunc(Of T) ( 
	fieldPerOrdinal As String()
) As ProjectionRowDelegate(Of T)
Parameters
- fieldPerOrdinal
 - Type: SystemString
The field name on [ordinal]. names are in their original casing 
Type Parameters
- T
 
Return Value
Type: 
ProjectionRowDelegateT
            ready to use projection row delegate.
            
See Also