私がこのIQueryable
変数を持っているとしましょう:
var result= (from fruit in fruitTable
join dapple in applesIQuery on fruit.fruitType equals dapple.fruitType into apples
from apple in apples.DefaultIfEmpty()
select new foo );
applesIQueryは、別IQueryable
の結合グループで構成される別のクエリから取得されます。
applesIQuery =(from a in anotherTable select new {id = foo}) ;
applesIQuery == null
基本的に、id = 0の1つの要素のリストを作成しますが、をに変換しないIQueryable
場合を処理する必要がありIEnumerable
ます。何かのようなもの :
applesIQuery =(from a in anotherTable select new {id = foo})?? Iqueriable {new {id=0}} ;
正しい方向へのポインタはありますか?