private int EmploymentID { get; set; }
private void MapFields(DataRow row)
{
if(row.HasError)
EmploymentID
= Convert.ToInt32(row["EmploymentID"].ToString());
}
The code shows that it validates if the DataRow object has error on its row but I want to validate if it ever exist. Is there an approach for the code rather using HasError method of DataRow?
You can also use this one statement
row.Table.Columns.Contains("EmploymentID")