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
The code you wrote checks that there's only one row which fulfils your search condition. If you actually want the rows, drop the Assert and Count
Assert
Count