Linq数据结构

时间:2013-09-04 01:34:47

标签: linq data-structures

我有两个问题,我正在努力解决LINQ问题。如果你能提出建议我很感激。我有两个列表rawStates(存储entity-downtime-uptime-eventtype行)和rawData列表存储产品的实体进出时间。

  1. 我想从rawStates中选择那些在等待处理该实体时发生的元素

    foreach(var t in rawData)
        var s = rawStates
        //I am not sure if this single logic clause in Where is enough;
        .Where(o => o.Entity == t.Entity
            && o.DownDate > t.InTime
            && o.Update < t.OutTime)
        .ToList();
    
  2. 如果我将rawData分组为productID(有多个行具有相同的ProductID),如何将此“s”恢复为这些组,以便productID eventtype我可以按summarise分组productID {{1}}

0 个答案:

没有答案