User2103319870 posted
DataTable filtereddt = new DataTable();
var filteredrows = ds.Tables[0].AsEnumerable()
.Where(r => r.Field<string>("Country") != string.Empty).Select(r => r.Field<string>("Country") == "Ind");
filtereddt=filteredrows .CopyToDataTable()
You have a condition in select clause so you will get only True or false as results. Also if you have null values in table, you can use String.IsNullOrEmpty method like below
DataTable filteredrows = ds.Tables[0].AsEnumerable()
.Where(r => !(string.IsNullOrEmpty(r.Field<string>("Country"))) && (r.Field<string>("Country") == "Ind")).CopyToDataTable();