我有以下DataTable
RequestId userID ProductCode ProductValue
1 "10004" 70 85.50
2 "10004" 67 944.00
3 "10333" 30 97.00
4 "23344" 70 89.00
我想要实现的目标是 - 将ProductCode
和ProductValue
连接成逗号分隔的字符串到新列中,并且任何重复的行都将添加到此逗号分隔的字符串中。然后删除重复行(按请求ID排序)
RequestId userID ProductCode ProductValue NewColumn
1 "10004" 70 85.50 "70,85.50,67,944.00"
3 "10333" 30 97.00 "30,97.00"
4 "23344" 70 89.00 "70,89.00"
这是否可以使用Linq - 或者我必须在表中循环并询问字段吗?
答案 0 :(得分:5)
var newTable = oldTable.Clone();
newTable.Columns.Add("NewColumn");
newTable = oldTable.AsEnumerable()
.GroupBy(row => row.Field<string>("userID"))
.Select(g => {
var newRow = newTable.NewRow();
var firstRow = g.First();
for(int i = 0; i < 4; i++) newRow[i] = firstRow[i];
newRow["NewColumn"] = string.Join(", ",
g.Select(row=>row.Field<string>("ProductCode")
+ ", " + row.Field<decimal>("ProductValue")));
return newRow;
}).CopyToDataTable();
注意:我认为ProductCode是字符串,userId
和NewColumn
值附近的双引号不是实际值的一部分。