I have an asp.net application, and now I am using datasets for data manipulation. I recently started to convert this dataset to a List collection. But, in some places it doesn\'
you can also try
var query = from p in list where p.Age > 18 select p;