2

次のクエリの実行中にエラーが発生します

エラー: 指定された LINQ 式には、異なるコンテキストに関連付けられているクエリへの参照が含まれています

クエリ:

var wordlePuzzle = (from wp in wordlepostitionRepository.All
join wtc in wordletextclueRepository.All on wp.WordleTexCluetId equals wtc.WordleTextClueId
join w in wordleRepository.All on wtc.WordleId equals w.WordleId
where wtc.WordleId == id
select new WordlePuzzle
{
   Row = w.WordleRow,
   Column = w.WordleColumn,
   Title = w.WordleTitle,
   DifficultyLevel = DifficultyLevel.Easy,
   Duration = w.WordleDuration,
   ExpiresOn = w.ExpireDate
});

クエリの最後に追加しようとしまし.AsEnumerable();たが、それでもエラーが発生します。

これらすべてのテーブルに対して単一のデータベースしかありません。

4

1 に答える 1