I have a String and I need to check if any column \"item_manuf_id\" in DataTable dtPs.Rows equals to certain value
I can loop over all Rows and compare
Something like this
string find = "item_manuf_id = 'some value'"; DataRow[] foundRows = table.Select(find);