我想使用其中具有空格的字段(CompteNum)对GroupBy元素进行设置。所以我想使用这段代码修剪字段
var excelLinesGrouped = excelLines
.GroupBy(l => l.CompteNum.Trim(),
(entry, elements) =>
new
{
Entry = entry,
Writings = elements
});
它给出空结果,可能意味着GroupBy不支持修剪。还有其他选择吗?
谢谢