How to display a dataRow Array in a datagridview control ?
Hello,
This is my code to retrieve records from a database into a dataRow array.
returnedRows = bookDS.Tables["book"].Select(comboBy.Text + "=" + "'" + searchFor + "'", "BookID ASC");
Now, I want to display these Rows in a datagridview control. How do I do that ?