私は2つのテーブルを持っています
public class Table1
{
[Key]
int ID{get; set;}
Table2 table2{get; set;}
}
public class Table2
{
[Key]
int ID{get; set;}
int table1ID{get; set;}
//no instance of table i.e is relationship is uni-directional only
}
Table1.ID と Table2.table1ID を使用して、table1 と table2 の関係を設定するにはどうすればよいですか?