Click or drag to resize
EntityCoreTFieldsTestCurrentFieldValueForNull Method

Note: This API is now obsolete.

Returns true if the current value for the field with the fieldIndex passed in represents null/not defined, false otherwise. Should not be used for testing if the original value (read from the db) is NULL

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
[ObsoleteAttribute("Starting with LLBLGen Pro v3.5, this method is obsolete. Instead simply use entity.Field==null.", 
	false)]
public bool TestCurrentFieldValueForNull(
	Enum fieldIndex
)

Parameters

fieldIndex
Type: SystemEnum
Index of the field to test if its currentvalue is null/undefined

Return Value

Type: Boolean
true if the field's value isn't defined yet, false otherwise

Implements

IEntityCoreTestCurrentFieldValueForNull(Enum)
See Also