所以,我有以下類:的LINQ的GroupBy類
public class Category
{
public int idCategory { get; set; };
public string nameCategory { get; set; };
public List<Product> products { get; set; }
}
public class Product
{
public int idProduct { get; set; };
public string nameProduct { get; set; };
public float price { get; set; };
}
我有返回包含在這條路上元素列表的方法:
idCategory, nameCategory, idProduct, nameProduct, price
0, Shoes, 0, Jordan, 99.9
0, Shoes, 1, Nike, 59.9
0, Shoes, 2, Adidas, 85.6
0, Shoes, 3, NewFeel, 11.0
1, watch, 6, Armani, 59.9
1, watch, 8, CK, 85.6
1, watch, 9, Rolex, 11.0
現在我想,讓他們作爲類別列表。
我可以通過這個列表來循環創建一個父親列表,但我想要做的就是使用linq「group by」或任何其他方法來實現此目的。
這是可能的嗎?
請在你所期望的更多的描述。 Acutally給我們一些虛擬數據和你的期望。謝謝 ! – Christos
由於您的列表中有一系列對象,因此'GroupBy()'方法僅將這些對象分組,而不將這些對象的內容分組。 – Transcendent
讓你的方法返回列表難道不是更容易嗎? –
tinstaafl