Checks if a particular column in the EasyObject has a null value.
True if the column is null, False if not
The "s_" properties will automatically return a string value for the property, and String.Empty if the column value is null.
Employee emp = new Employee();
if (!emp.IsColumnNull(EmployeeSchema.FirstName.FieldName)
{
txtFirstName.Text = emp.FirstName
}
EasyObject Class | NCI.EasyObjects Namespace