How can I search rows in a datatable for a row with Col1=\"MyValue\"
I\'m thinking something like
Assert.IsTrue(dataSet.Tables[0].Rows. FindAll(x =&g
Why use lambda and not select?
DataRow[] foundRow = ( dataSet.Tables[0].Rows.Select("Col1 = 'MyValue'");