Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の質問を説明するための非常に単純なデータベーススキーマを次に示します。
3つのテーブルがあります。T1、T2、T3。
T1 は T2 と 1 対多の関係にあります。
また、T2 は T3 と 1 対多の関係にあります。
T1.Id (T1 の主キー) に関連する T3 のすべての行を取得するにはどうすればよいですか?
試す
var t3Rows = dataContext.T3.Where(x => x.T2.T1.Id == id);