DataValueProjector Constructor (String, Int32, Type, Boolean) |
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public DataValueProjector(
string projectedResultName,
int valueIndex,
Type valueType,
bool setUsingCTorHint
)
Public Sub New (
projectedResultName As String,
valueIndex As Integer,
valueType As Type,
setUsingCTorHint As Boolean
)
Parameters
- projectedResultName
- Type: SystemString
Name of the projected result. - valueIndex
- Type: SystemInt32
Index of the value. Ignored if valueProducerFunc has been specified - valueType
- Type: SystemType
Type of the value. - setUsingCTorHint
- Type: SystemBoolean
Flag which hints the projector engine how to set the destination element: via the constructor (true) or on another way
(false). This flag can be ignored by the projector engine if values can better be set otherwise.
See Also