如何从集合中的集合中更好地获取集合?

时间:2012-11-29 11:48:12

标签: c#

从下面的代码中可以看出,我正在列表中的列表中构建一组对象。想知道是否有更好的方法来编写这种令人讨厌的方法。

提前干杯

private List<ListINeed> GetListINeed(Guid clientId)
         {
         var listINeed = new List<objectType>();
             someobject.All(p =>
                                 {
                                     p.subcollection.All(q =>
                                                        {
                                                            listINeed.Add(q.subObject);
                                                            return true;
                                                        });
                                     return true;
                                 });
             return listINeed;
         }

3 个答案:

答案 0 :(得分:5)

使用SelectMany

private List<ListINeed> GetListINeed(Guid clientId)
{
    return someobject.SelectMany(p=> p.subcollection)
                             .Select(p=>p.subObject).ToList();
}

答案 1 :(得分:1)

如果您对使用查询语法感兴趣,可以这样做。

var query = from c in someObject
            from o in c.subCollection
            select o;

这使得在某些情况下阅读更好一些,例如

var query = from c in someObject
            from o in c.subCollection
            where c.SomeValue > 12
            select o;

个人偏好真的,我只是觉得查询语法更容易阅读。 :)

答案 2 :(得分:0)

怎么样

return someobject.SelectMany(so=>so.subcollection).Select(o=>o.subObject).ToList();

除非你打算在那里做其他事情(正如clientId参数暗示的那样),否则它实际上几乎否定了函数的需要。