0

listname.Join()メソッドを使用して、エンティティセットを使用してリスト(コレクション)を結合できます。

例えば、

var query = listName.Join(repository.GetQuery<MyCustomType>(),
 list => list.CustomTypeId,
 customType => customType.id,
 (list, customType) => list); 

これは正常に機能していますが、エンティティ内のリストコレクションに関連する行のみを返します。結果セットに「MyCustomType」のインスタンスも必要です。どうすればこれを達成できますか?

4

1 に答える 1

2
var query = listName.Join(repository.GetQuery<MyCustomType>(),
 list => list.CustomTypeId,
 customType => customType.id,
 (list, customType) => new { l = list, c = customType } ); 
于 2013-01-03T09:02:25.423 に答える