Querying datatable to get rows with a certain value in the first column
- by user1776590
I am currently using the code below and am wondering if it would be possible to query based on an entry value. At the moment it returns the number of rows that have been defined.
var q = sqlData.AsEnumerable().Take(2);
This data comes in from a database and is imputed into the table but at the moment it only returns database data into the…