我有一个自定义数据类型,其中包含List<string>
.
我希望List
按CustomDataType
那个嵌套的List<string>
.
我试过以下
compoundSchedules.GroupBy(a => a.Timepoints);
whereTimepoints
是表示为字符串的日期列表。如果任何CustomDataType
s 具有相同的时间点,我希望将它们组合在一起。使用上面的代码,它不会对它们进行分组,而是将其时间点列表重复List
为.CustomDataType
IGrouping
Key
谢谢。