| EntityCoreTFieldsPreProcessValueToSet Method  | 
 
            Method which is meant to be overriden to pre-process a value right before it is set as a field's new value. In general you don't need to override
            this method. By default it's a no-op.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxprotected virtual void PreProcessValueToSet(
	IFieldInfo fieldInfoOfFieldToSet,
	ref Object valueToSet
)
Protected Overridable Sub PreProcessValueToSet ( 
	fieldInfoOfFieldToSet As IFieldInfo,
	ByRef valueToSet As Object
)
Parameters
- fieldInfoOfFieldToSet
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIFieldInfo
The field info of field to set. - valueToSet
 - Type: SystemObject
The value to set. 
Remarks
            Use the IFieldInfo specified to obtain values and other info for the field through the IEntityFieldsCore interface implemented on the
            Fields object
            
See Also