EntityCoreTFieldsPostProcessValueToGet Method |
Post-processes the value to return from GetValue. Override this method to be able to post-process any value to return from an entity field's property.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.1.0.0 (5.1.0)
Syntax protected virtual void PostProcessValueToGet(
IFieldInfo fieldInfoOfFieldToGet,
ref Object valueToReturn
)
Protected Overridable Sub PostProcessValueToGet (
fieldInfoOfFieldToGet As IFieldInfo,
ByRef valueToReturn As Object
)
Parameters
- fieldInfoOfFieldToGet
- Type: SD.LLBLGen.Pro.ORMSupportClassesIFieldInfo
The field info of field to get. - valueToReturn
- Type: SystemObject
The value to return.
Remarks
It's recommended that you don't change the type of the value passed in. If you want to change the type, use a type-converter.
Use the IFieldInfo specified to obtain values and other info for the field through the IEntityFieldsCore interface implemented on the
Fields object
See Also