1

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

我的数据库包含 2 个表

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

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

4

1 回答 1

2

试试这个:

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

/* Commit it */
于 2013-04-02T15:49:20.790 回答