EntityCoreTFieldsPostFieldValueSetAction Method  | 
 
            Method to perform post-fieldvalue set actions, like flagging this object as changed.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntaxprotected virtual void PostFieldValueSetAction(
	bool fieldValueSet,
	string propertyName
)
Protected Overridable Sub PostFieldValueSetAction ( 
	fieldValueSet As Boolean,
	propertyName As String
)
Parameters
- fieldValueSet
 - Type: SystemBoolean
Field value set flag. If false, nothing happens in this method. - propertyName
 - Type: SystemString
Name of the property. 
RemarksCall this method from an override of SetNewFieldValue after that method has been called with 'false' for FireChangeEvent
See Also