string str = "Select bd_id from [Active]";
ds = new DataSet(str);
da = new SqlDataAdapter(str, con);
da.Fill(ds);
I want to add the dataset that i get that is a List of ID’S in the form:
bd_id
1
2
3
Into a generic LIST as Items
How do i go about doing the same?
Makue use of LINQ to DATATABLE will do you task easily.