AspNetUsers链接到另一个表。如何创建对象(1-1关系)

时间:2019-05-31 14:43:59

标签: c# asp.net-mvc code-first razor-pages

我正在尝试创建带有其他用户信息的表,并将其与用户一对一关系链接。我尝试了在stackOverflow上发现的一些东西,但仍然无法正确链接两个表(创建对象)

应用的想法是对美容治疗师进行评论和评分。 用户可以选择是否要拥有一个扩展帐户作为治疗师(具有更多信息和可能的评分)。

我正在学习asp.net mvc,因此我愿意寻求有关如何创建此应用的任何帮助或建议。

当用户登录并尝试创建Therapist对象时,出现错误(看起来我必须交付用户对象)。 不知道如何解决它,即使这个解决方案对我的想法来说也不错。

public class Therapist
{     
        public int IdTherapist { get; set; }

        [Key, ForeignKey("User")]
        [Required]
        public string UserId { get; set; }

        public virtual  ApplicationUser User { get; set; }

        [Required]
        [Display(Name = "Name")]
        public string TherapistName { get; set; }

        [Display(Name = "Surname")]
        public string TherapistSurname { get; set; }

        [Display(Name = "City")]
        public string City { get; set; } }

public class ApplicationUser : IdentityUser
{    

        public virtual Therapist Therapist { get; set; }
        public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<ApplicationUser> manager)
        {

            var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);

            return userIdentity;
        }
    }

//Therapist Controller

public ActionResult Create(Therapist therapist)      
   if (therapist.UserId == null)
               therapist.UserId = User.Identity.GetUserId();

                    _context.Therapists.Add(therapist);
                            context.SaveChanges();

                ModelState.AddModelError("", "Unable to save changes. Try again, and if the problem persists see your system administrator.");
            }

            return View(therapist);

运行此代码后,我有

  

“ System.Data.Entity.Validation.DbEntityValidationException”,仔细查看:“ ErrorMessage”用户字段为必填。“
  (不是User.Id)

1 个答案:

答案 0 :(得分:0)

尝试在User类中添加TherapistId属性。