我正在尝试使用 Linq 合并一些列表项。
我有一个包含一些变量的自定义对象列表:string1、string2 double1 date1。
我想将具有 string2 作为公共字符串的列表项分组,并且必须添加 double1。
最后,我想保存最后一项的最近日期。
对于第一个字符串(string1),没关系,我可以想象我们可以简单地连接所有字符串?
这是处理前后的数据示例:
"toto" "test" 0.10 Datetime(04-04-2013)
"to" "test" 0.80 Datetime(01-01-2013)
"toto" "teeeest" 0.10 Datetime(01-01-2013)
"toto" "test" 0.10 Datetime(02-01-2013)
"toto" "test" 1.00 DateTime(04-04-2013)
"to" "teeeest" 0.10 DateTime(01-01-2013)
所以我无法正确使用 linq,但我尝试使用带有 select 的“groupby”,但它没有运行:-/
在此先感谢您对我的帮助!