IEntityCoreSetNewFieldValue Method (Int32, Object) | 
 
            Sets the EntityField on index fieldIndex to the new value value. Marks also the entityfields as dirty. Will refetch the complete entity's fields
            from the database if necessary (i.e. the entity is outofsync.).
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxbool SetNewFieldValue(
	int fieldIndex,
	Object value
)
Function SetNewFieldValue ( 
	fieldIndex As Integer,
	value As Object
) As Boolean
Parameters
- fieldIndex
 - Type: SystemInt32
Index of EntityField to set the new value of - value
 - Type: SystemObject
Value to set 
Return Value
Type: 
Booleantrue if the value is actually set, false otherwise.
See Also