Select method in List Collection

后端 未结 5 1620
温柔的废话
温柔的废话 2021-01-30 15:57

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\'

5条回答
  •  一向
    一向 (楼主)
    2021-01-30 16:37

    you can also try

    var query = from p in list
                where p.Age > 18
                select p;
    

提交回复
热议问题