我有一个像下一个实体项目:
class Item
{
int Id;
string Name;
int GroupId;
virtual Group Group; //refers to Group table
string Size;
virtual ICollection<Set> Sets; //refers to many-to-many relation
}
所以我想对下一个项目进行分组:
ICollection<IGrouping<string, Item>> list = AllItems.GroupBy(x => x.Group.Name).ToList();
ICollection<IGrouping<string, Item>> list = AllItems.GroupBy(x => x.Size).ToList();
我想要一样,但是套装。有可能吗?
澄清。例如,Item1包含在每个集合中,然后我想在分组结束时按下一个列表:
Set 1
Item 1
Item 2
Set 2
Item 1
Item 3
Set 3
Item 1
Item 4
.....
注意,我需要相同的结构ICollection<IGrouping<string, Item>>
,然后在代码中传递它。我想也许可以创建中间结构,它可以接受ICollection<IGrouping<string, Item>>
和包含我的项目的集合列表?
答案 0 :(得分:3)
SelectMany
+ GroupBy
:
ICollection<IGrouping<string, Item>> list = AllItems
.SelectMany(x => x.Sets
.Select(y => new
{
Key = y,
Value = x
}))
.GroupBy(x => x.Key.Name, x => x.Value)
.ToList();