我收到关于“User_Id”列的异常,我的数据库或代码中没有任何地方。它就这样出现了......有什么问题?有什么建议么 ?当我想添加一些东西时,我得到了这个异常。
protected override void BaseAdd(Meal entity)
{
using (var context = new ProjectContext())
{
context.Meals.Add(entity);
context.SaveChanges(); //here is where I get the exception
}
}