lamada 表达式之神奇的groupby

时间:2023-01-31 23:25:25

少说话多干活

先定义一个测试用的实体,接下来会用字段Name进行分组的

public class TestToRun
{
  public string Name { get; set; }//名称
  public int Qutyti { get; set; }//分数
  public int Sex { get; set; }//戏谑
  public string HCode { get; set; }//编码
}

这里用窗体测试的里面代码可以用

public partial class Form1 : Form
{
  public Form1()
  {
    InitializeComponent();
  }

  private void Form1_Load(object sender, EventArgs e)
  {
    var r1 = Getlist().GroupBy(m => m.Name).Select(p=>new HAHA(){Name=p.Key,SumQu=p.Sum(n=>n.Qutyti)});

    var r2 =
        (from m in Getlist() group m by m.Name into g select new { g.Key, csum = g.Sum(m => m.Qutyti) }).ToList();
    int a = 0;
  }
//计算后测试后人表达式r1=r2

//先对集合进行分组在进行选择,之前一直没有使用select进行组合一位分组有问题,结果带参数的所有方法都用了一遍。。。。可想而知 真惨 结果没有一个对的。现在改了以后不要在范这样的错误

  private List<TestToRun> Getlist()
  {
    var list = new List<TestToRun>()
      {
        new TestToRun(){Name="a",Qutyti=1,Sex=1,HCode="0001"},
        new TestToRun(){Name="a",Qutyti=2,Sex=1,HCode="0002"},
        new TestToRun(){Name="a",Qutyti=3,Sex=1,HCode="0003"},
        new TestToRun(){Name="a",Qutyti=4,Sex=1,HCode="0004"},
        new TestToRun(){Name="a",Qutyti=5,Sex=1,HCode="0005"},
        new TestToRun(){Name="a",Qutyti=6,Sex=1,HCode="0006"},
        new TestToRun(){Name="b",Qutyti=1,Sex=1,HCode="0007"},
        new TestToRun(){Name="c",Qutyti=2,Sex=1,HCode="0008"},
        new TestToRun(){Name="c",Qutyti=2,Sex=1,HCode="0008"},
        new TestToRun(){Name="c",Qutyti=2,Sex=1,HCode="0010"},
        new TestToRun(){Name="c",Qutyti=2,Sex=1,HCode="0011"}
      };
    return list;
  }
}