List<ProductInfoResult> listResut = new List<ProductInfoResult>();
for (int i = 0; i < 100; i++)
{
listResut.Add(new ProductInfoResult() { CategoryID = i });
}
List<ProductInfoResult> listResut2 = new List<ProductInfoResult>();
listResut2=listResut.Where(w => w.CategoryID >20 && w.CategoryID<30).Select(p => { p.CategoryName = p.CategoryName + "aa"; return p; }).ToList();
listResut.Where(w => w.CategoryID > 30 && w.CategoryID < 40).ToList().ForEach(p => p.CategoryName = p.CategoryName + "bb");
for (int i = 0; i < 100; i++)
{
listResut.Add(new ProductInfoResult() { CategoryID = i });
}
List<ProductInfoResult> listResut2 = new List<ProductInfoResult>();
listResut2=listResut.Where(w => w.CategoryID >20 && w.CategoryID<30).Select(p => { p.CategoryName = p.CategoryName + "aa"; return p; }).ToList();
listResut.Where(w => w.CategoryID > 30 && w.CategoryID < 40).ToList().ForEach(p => p.CategoryName = p.CategoryName + "bb");