使用ado.net实体对象插入多个表

时间:2013-04-02 15:06:53

标签: c# asp.net entity-framework-4

我想在实体框架4.0的多个表中插入记录

我的数据库包含2个表

 1. Student (StudentID - PrimaryKey)
 2. Standard (StudentID - ForeignKey)

如何一次在这些表中添加值?

1 个答案:

答案 0 :(得分:2)

试试这个:

Student student = new Student();
...
Standard standard = new Standard();
standard.Student = student;

/* Commit it */