Users Pricing

forum

Home Forums How can I validate if the column exist in a DataRow object? – MindStick

How can I validate if the column exist in a DataRow object?

Anonymous User 2593 02 Sep 2014
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?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md