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