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.4.0.0 (5.4.0)
Syntax bool 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