Linq to Dictionary with key和list

时间:2015-09-22 12:36:34

标签: c# linq dictionary

我的数据如下表所示

Master Columns 
ID    MyDateTime 
1     07 Sept
2     08 Sept

上面的MyDatetime列具有唯一索引

Detail Columns
ID     Data1     Data2    Data3
1      a         b        c 
1      x         y        z
1      f         g        h
2      a         b        c

我想在字典中填充它。我试过了

Dictionary<DateTime, List<Detail>> result = (
                          from master in db.master
                          from details in db.detail
                          where (master.ID == detail.ID)
                          select new
                          {
                              master.MyDateTime,
                              details
                          }).Distinct().ToDictionary(key => key.MyDateTime, value => new List<Detail> { value.details });

我希望字典中有两行

1, List of 3 rows as details
2, List of 1 row as details

我得到一个错误,它抱怨两次输入字典的键。关键是日期时间在主人

中是唯一的

1 个答案:

答案 0 :(得分:10)

这正是查找的内容 - 因此请使用Tools > Build System代替ToLookup

ToDictionary

(您不需要使用ILookup<DateTime, Detail> result = (from master in db.master join details in db.detail on master.ID equals detail.ID select new { master.MyDateTime, details }) .ToLookup(pair => pair.MyDateTime, pair => pair.details); ,并注意使用连接而不是第二个Distinctfrom子句。)