我想在实体框架4.0的多个表中插入记录
我的数据库包含2个表
1. Student (StudentID - PrimaryKey)
2. Standard (StudentID - ForeignKey)
如何一次在这些表中添加值?
答案 0 :(得分:2)
试试这个:
Student student = new Student();
...
Standard standard = new Standard();
standard.Student = student;
/* Commit it */