listname.Join()メソッドを使用して、エンティティセットを使用してリスト(コレクション)を結合できます。
例えば、
var query = listName.Join(repository.GetQuery<MyCustomType>(),
list => list.CustomTypeId,
customType => customType.id,
(list, customType) => list);
これは正常に機能していますが、エンティティ内のリストコレクションに関連する行のみを返します。結果セットに「MyCustomType」のインスタンスも必要です。どうすればこれを達成できますか?