DataValueProjectorProjectValue Method |
Projects the entity through this entity property projector and results into a single value, based on what the DefaultValueProducer is and
what filter is specified (if any)
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 Object ProjectValue(
Object[] sourceValues
)
Public Function ProjectValue (
sourceValues As Object()
) As Object
Parameters
- sourceValues
- Type: SystemObject
The source values of which this projector will pick a value to project. The projection result is returned.
Return Value
Type:
Object
Projection result of a value in the sourcevalues or null if the value index is out of bounds. If the index is out of bounds, ValuePostProcess isn't called.
Implements
IDataValueProjectorProjectValue(Object)Remarks Calls, if a valid value was obtained from sourceValues, ValuePostProcess after the projection to allow derived classes to post-process
the value.
See Also