Click or drag to resize
EntityCoreTFieldsGetCurrentFieldValue Method
Gets the current value of the EntityField2 with the index fieldIndex.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public Object GetCurrentFieldValue(
	int fieldIndex
)

Parameters

fieldIndex
Type: SystemInt32
Index of EntityField2 to get the current value of

Return Value

Type: Object
The current value of the EntityField2 specified

Implements

IEntityCoreGetCurrentFieldValue(Int32)
Exceptions
ExceptionCondition
ORMEntityOutOfSyncExceptionWhen the entity is out of sync and needs to be refetched first.
ORMEntityIsDeletedExceptionWhen the entity is marked as deleted.
ArgumentOutOfRangeExceptionWhen fieldIndex is smaller than 0 or bigger than the amount of fields in the fields collection.
See Also