在Controller throw错误中引用模型名称

时间:2017-10-06 20:02:47

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

我正在使用MVC中的用户注册表单。使用Entity框架,我通过创建ADO模型将我的数据库与项目链接起来。作为将数据保存到表中的一部分,我在controllet中添加了一个Httppost方法。以下是摘录:

[HttpPost]
public ActionResult registration(u_user usermodel)
{
    using (InCredibleModel models = new InCredibleModel())
    {
        models.u_user.Add(usermodel);
        models.SaveChanges();
    }
    ModelState.Clear();
    ViewBag.SuccessMessage = "Sign Up successfull!!!";
    return View("Registration", new u_user());
}

这里InCredibleModel是我在链接数据库时创建的数据模型的名称。但是这个模型被处理类型/命名空间,它让我“无法找到类型/命名空间”错误。如何解决这个问题?

0 个答案:

没有答案