EntityPropertyProjectorValuePostProcess Method |
Postprocesses the value passed in, which is the value produced by the selected value producer in ProjectEntityProperty.
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 protected virtual Object ValuePostProcess(
Object preliminaryProjectionResult,
IEntityCore entity
)
Protected Overridable Function ValuePostProcess (
preliminaryProjectionResult As Object,
entity As IEntityCore
) As Object
Parameters
- preliminaryProjectionResult
- Type: SystemObject
The preliminary projection result. - entity
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
The entity projected
Return Value
Type:
Objectthe projection result processed by this routine. The base class version is empty and returns preliminaryProjectionResult
See Also