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.9.0.0 (5.9.0)
Syntax[ObsoleteAttribute("Starting with LLBLGen Pro v3.5, this method is obsolete. Instead simply use entity.Field==null, or entity.Fields.GetCurrentValue(fieldIndex)==null.", 
	false)]
public bool TestCurrentFieldValueForNull(
	Enum fieldIndex
)<ObsoleteAttribute("Starting with LLBLGen Pro v3.5, this method is obsolete. Instead simply use entity.Field==null, or entity.Fields.GetCurrentValue(fieldIndex)==null.", 
	false)>
Public Function TestCurrentFieldValueForNull ( 
	fieldIndex As Enum
) As BooleanParameters
- fieldIndex
 - Type: SystemEnum
Index of the field to test if its currentvalue is null/undefined 
Return Value
Type: 
Booleantrue if the field's value isn't defined yet, false otherwise
Implements
IEntityCoreTestCurrentFieldValueForNull(Enum)
See Also