强类型List.GroupBy()

时间:2011-12-27 19:39:36

标签: c# linq group-by

我一直试图在谷歌和SO

上找到答案

但我发现的所有地方都使用了匿名类型的结果列表

我想要实现的目标是采取List<SecondaryStandard>

并创建SecondaryStandard

的分组列表

每个SecondaryStandard看起来像这样

public class SecondaryStandard
{

    public string Id { get; set; }
    public int IdNumeric { get; set; }
    public string IdText { get; set; }
    public Sample Sample { get; set; }
    public string StandardName { get; set; }
    public DateTime DateCompleted { get; set; }
    public SamplePoint SamplingPoint{ get; set; }
    public Instrument Instrument{ get; set; }
    public string ContainerId { get; set; }
    public double Value { get; set; }
    public string ComponentName { get; set; }
    public string PointLocation { get; set; }
    public string Description { get; set; }
    public string Description2 { get; set; }
    public string Analysis { get; set; }
    public string Units { get; set; }

}

我想要的是一个List(),其中Value Property是每个ComponentName的平均结果。

关于如何以强类型方式实现此目标的任何想法,还是我需要将其吸取并使用匿名对象来实现我正在寻找的东西?

1 个答案:

答案 0 :(得分:5)

你是说这个?

List<SecondaryStandard> list = new List<SecondaryStandard>();
// populate list

List<SecondaryStandard> result = list
    .GroupBy(l => l.ComponentName)
    .Select(s => new SecondaryStandard() { ComponentName = s.Key, Value = s.Average(x => x.Value) }).ToList();