私はデータを3つの関係表を挿入したいが、私はこれを行うことはできません:/C#Entity Frameworkの挿入関係テーブル?
ここでは、コード
hali_sahaEntities con = new hali_sahaEntities();
Users user = new Users();
Emails email = new Emails();
Phones phone = new Phones();
user.Name = textBox1.Text;
user.Surname = textBox7.Text;
user.IdentityNumber = Convert.ToInt32(textBox2.Text);
user.Adress = textBox5.Text;
user.Comment = textBox6.Text;
email.TCKN = Convert.ToInt32(textBox2.Text);
email.Email = textBox4.Text;
phone.TCKN = Convert.ToInt32(textBox2.Text);
phone.Phone = textBox3.Text;
con.Users.Add(user);
con.Emails.Add(email);
con.Phones.Add(phone);
con.SaveChanges();
である私は、データのユーザー表を挿入することができますが、電子メールや携帯電話の表は、データを挿入することはできませんか?この場合は、ここで
テーブル間のどのような関係を使用することができますか? 1対1? – Eldeniz
私は多くを使用します – oEs
エンティティモデルで関係を作成していますか? – Eldeniz