私は4つのテーブルを持っています:
table1
id1,
fk_tbl2 //this is the foreign key to the "id" in table2
table2
id2,
fk_tbl3 //this is the foreign key to the "id" in table3
table3
id3,
fk_tbl4 //this is the foreign key to the "id" in table4
table4
id4,
name
ユーザーが「id4」を入力すると、「table1」のレコードのリストを取得できるように、複数のテーブルを結合したいと考えています。
C# で結合を記述する方法は? ありがとう。