Click or drag to resize
DataValueProjectorValuePostProcess Method
Postprocesses the value passed in, which is the projection result determined by ProjectValue. Use this routine to post-process this value if you want to perform post-processing per value.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected virtual Object ValuePostProcess(
	Object preliminaryProjectionResult,
	Object[] sourceValues
)

Parameters

preliminaryProjectionResult
Type: SystemObject
The preliminary projection result.
sourceValues
Type: SystemObject
The source values used for the processing.

Return Value

Type: Object
the projection result processed by this routine. The base class version is empty and returns preliminaryProjectionResult
See Also