正如您从下面的代码中看到的那样,正在从列表中的列表中构建对象集合。想知道是否有更好的方法来编写这种讨厌的方法。
提前喝彩
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;
}