dbcontext在添加或更新时尝试添加新的应用程序用户

时间:2017-04-05 11:46:35

标签: asp.net-mvc entity-framework asp.net-identity dbcontext

我有一个带有应用程序用户外键的模型,如:

class Student{    
    public int studentID;

    public string fk_userInfo { get; set; }
    [ForeignKey("fk_userInfo")]
    public ApplicationUser userInfo { get; set; }
}

当我尝试使用

dbcontext.Student.AddOrUpdate(model);

它显示了与ApplicationUser相关的错误,它想要创建一个新用户,当然还有用户名!! 我当然不想添加新用户!我只需要用外键添加学生信息 *该模型是学生类型

0 个答案:

没有答案