C# DataTable中的某列进行分组
程序员文章站
2022-06-10 18:06:54
...
IEnumerable<IGrouping<string, DataRow>> result = ContractDt.Rows.Cast<DataRow>().GroupBy<DataRow, string>(dr => dr["分组字段名"].ToString());//C# 对DataTable中的某列分组,result中的Key是分组后的值
推荐阅读