私は単純な(あいまいな)クラスを持っています:
public Thing ()
{
public IList<string> Strings()
{
// returns an IList of whatever,
// using strings as an example
}
}
IQueryable<Thing> things
コードの他の場所で、データベースからを取得します
私の目標は、すべてのstring
をthings
1つIQueryable<string> strings
にまとめることです。おそらく次のようなものです。
var strings = from t in things
select t.Strings()
しかし、それは私にしか得られませんIQueryable<IList<string>>
。これらすべてのリストを1つの包括的なコレクションにまとめるにはどうすればよいですか?