public class ConsolidatedChild
{
public string School { get; set; }
public string Friend { get; set; }
public string FavoriteColor { get; set; }
public List<Child> Children { get; set; }
}
public class Child
{
public string School { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public string Friend { get; set; }
public string Mother { get; set; }
public string FavoriteColor { get; set; }
}
对于上面的两个类,我想使用LINQ从列表中创建一个列表,按学校、朋友和FavoriteColor属性分组。这在LINQ中可行吗?
请忽略属性,代码的编写只是为了帮助解决这个问题。