How to SELECT/filter rows given a particular condition on a DataGrid/Data Table?
Hi,
I would like to SELECT the rows where column contains specified value.
Example: I would like to SELECT records where Country = "US"
ID | Name | Country
--------------------------
1 | John | US
2 | Fred | Canada
3 | Ben | US
Expected Result: Should return Data Table.
ID | Name | Country
--------------------------
1 | John | US
3 | Ben | US
Thanks