添加身份用户作为其他模型的属性



我正在使用MVC5和EntityFramework 6.1.3使用ASP.NET身份。我的问题是我无法将身份用户添加为另一个模型的属性。

我的应用程序让用户创建一个项目:

 public class Project
    {
        public int ProjectID { get; set; }
        public string ProjectName { get; set; }
        public virtual ApplicationUser ApplicationUser { get; set; }
    }

在创建一个新项目的操作方法中,我正在尝试将其添加在此类用户中:

public ActionResult Create([Bind(Include = "ProjectID,ProjectName")] Project project)
        {
            if (ModelState.IsValid)
            {
                // I added the first two lines of code below. 
                var loggedInUser = System.Web.HttpContext.Current.GetOwinContext().GetUserManager<ApplicationUserManager>().FindById(System.Web.HttpContext.Current.User.Identity.GetUserId());
                project.ApplicationUser = loggedInUser;
                db.Projects.Add(project);
                db.SaveChanges();
                return RedirectToAction("Index");
            }
            return View(project);
        }

loggeDinuser设置正确,它获取所有正确的属性。但是,当我尝试保存更新的上下文时,我会收到以下错误:

"Validation failed for one or more entities. The validation errors are: User name hellogoodnight@gmail.com is already taken."

因此,由于某种原因,我的代码显然试图创建一个新用户,而不是将现有的用户添加到创建的项目中。为什么?这不是将身份用户作为导航属性添加到模型的方法吗?

我想您的two表具有一对 relationship

Project实体只能连接一个user,并且user实体可以具有一个或多个projects

因此,您需要在Project类中附加外键,以使Entity framework正确到map关系并建立relational模型(数据库)和conceptual模型之间的关联。

 public class Project
 {
    public int ProjectID { get; set; }
    public string ProjectName { get; set; }
    public int ApplicationUserId{ get; set;}
    public virtual ApplicationUser ApplicationUser { get; set; }
 }

相关内容

  • 没有找到相关文章

最新更新