一对多(One-to-Many)关系: 下面,我们来介绍Code-First的一对多关系,比如,在一个Standard(年级)类中包含多个Student类. 如果想了解更多关于one-to-one,one-to-many,many-to-many关系的信息,请访问Entity Relationship 1.使用DataAnnotations配置One-to-Many关系: 如下代码所示: public class Student { public Student() { } public int…