ValueListProjectionDefinition.CreateAndAddDataValueProjectorToProjection Method |
Adds the data value projector to projection.
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.7.0.0 (5.7.0)
Syntaxpublic void CreateAndAddDataValueProjectorToProjection(
string targetName,
Type targetType,
int valueIndex,
ProjectionValueProducerFunc valueProducerFunc,
int[] valueProducerFuncParameterIndices
)
Public Sub CreateAndAddDataValueProjectorToProjection (
targetName As String,
targetType As Type,
valueIndex As Integer,
valueProducerFunc As ProjectionValueProducerFunc,
valueProducerFuncParameterIndices As Integer()
)
Parameters
- targetName
- Type: System.String
Name of the target. - targetType
- Type: System.Type
Type of the target. - valueIndex
- Type: System.Int32
Index of the value in the source. Ignored if valueProducerFunc isn't null - valueProducerFunc
- Type: SD.LLBLGen.Pro.ORMSupportClasses.ProjectionValueProducerFunc
The value producer func. - valueProducerFuncParameterIndices
- Type:System.Int32[]
The value producer func parameter indices.
See Also