EntityCoreTFieldsCheckIfCurrentFieldValueIsNull Method |
Note: This API is now obsolete.
Checks if the current value of the field on the index specified is null / not defined.
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)]
protected virtual bool CheckIfCurrentFieldValueIsNull(
int fieldIndex
)
<ObsoleteAttribute("Starting with LLBLGen Pro v3.5, this method is obsolete. Instead simply use entity.Field==null",
false)>
Protected Overridable Function CheckIfCurrentFieldValueIsNull (
fieldIndex As Integer
) As Boolean
Parameters
- fieldIndex
- Type: SystemInt32
Index of the field.
Return Value
Type:
Booleantrue if the field's value isn't defined yet, false otherwise
See Also