2

我使用代码优先在运行时生成数据库和数据。

我的两个类/模型具有一对多的关系。由于 FK 不能为空,因此我首先在插入Student之前插入Standard,并且我还手动输入了 FK ID。但是我仍然得到,我只是不明白为什么?System.NullReferenceException

我尝试使用谷歌搜索,但我找不到有关在代码优先中从头开始插入具有外部关系的数据的相关文章。

我的实体类/模型

public class Student {
    public Student() { }
    public int StudentID { get; set; }
    public string StudentName { get; set; }

    public int StandardId { get; set; } // FK StandardId
    public Standard Standard { get; set; } }

public class Standard {
    public Standard() { }
    public int StandardId { get; set; }
    public string StandardName { get; set; } 

    public ICollection<Student> Students { get; set; } }

我的主要

using (MyDbContext ctx = new MyDbContext())
{
    Standard std = new Standard();
    ctx.Standards.Add(std);
    ctx.SaveChanges(); // Database already has a StandardID = 1

    Student stud = new Student()
    {
        StudentName = "John",
        StandardId = 1  // I even manually type in the FK
    };

    ctx.Student.Add(stud); // I still get 'System.NullReferenceException'
    ctx.SaveChanges();
}
4

1 回答 1

2

不要手动添加你的StandardId,这样做:

using (MyDbContext ctx = new MyDbContext())
{
    Standard std = new Standard();

    Student stud = new Student()
    {
        StudentName = "John",
    };

    stud.Standard = std;

    ctx.Student.Add(stud);
    ctx.SaveChanges();
}

EF 将处理这种关系。

于 2016-10-10T10:17:36.810 回答