Click or drag to resize

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.9.0.0 (5.9.0)
Syntax
protected virtual void PreProcessValueToSet(
	IFieldInfo fieldInfoOfFieldToSet,
	ref Object valueToSet
)

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