我有一堂课
public class Foo
{
public IList<Foo> Items { get; set; }
}
public class FooList
{
public IList<Foo> Items { get; set; }
}
我希望能够在一个列表中获取所有 Foo 对象,而不是层次结构。
我试过了
IEnumerable<Foo> result = Items.SelectMany(f => f.Items);
但这只是让我获得了该特定对象中的项目 - 它并没有获得所有子对象中的所有项目。
我也试过
IEnumerable<Foo> result = Items.SelectMany(t => t)
但我得到了错误:
无法从用法中推断方法“System.Linq.Enumerable.SelectMany(System.Collections.Generic.IEnumerable, System.Func>)”的类型参数。尝试明确指定类型参数。