EntityType'MyProfile'没有定义键.定义此EntityType的键

ant*_*liu 18 c# asp.net asp.net-mvc-3

我不知道为什么我收到此错误消息.我在我的sql数据库中为它定义了一个主键.这是我的代码:

[HttpPost]
    public ActionResult Register(RegisterModel model)
    {
        if (ModelState.IsValid)
        {
            // Attempt to register the user
            MembershipCreateStatus createStatus = MembershipService.CreateUser(model.UserName, model.Password, model.Email);

            if (createStatus == MembershipCreateStatus.Success)
            {

                FormsService.SignIn(model.UserName, false /* createPersistentCookie */);
                MembershipUser myObject = Membership.GetUser();
                Guid UserID = (Guid)myObject.ProviderUserKey;
                MyProfile profile = new MyProfile();
                profile.Address = model.Address;
                profile.City = model.City;
                profile.Zip = model.Zip;
                profile.State = model.State;
                profile.UserId = UserID;
                db.Profiles.Add(profile);
                return RedirectToAction("Index", "Home");
            }
            else
            {
                ModelState.AddModelError("", AccountValidation.ErrorCodeToString(createStatus));
            }
        }

        // If we got this far, something failed, redisplay form
        ViewBag.PasswordLength = MembershipService.MinPasswordLength;
        return View(model);
    }
Run Code Online (Sandbox Code Playgroud)

这是我的MyProfile类:

   namespace MatchGaming.Models
{
    [Bind(Exclude = "ProfileId")]
    public class MyProfile
    {
        [ScaffoldColumn(false)]
        public int ProfileId { get; set; }

        public Guid UserId { get; set; }

        [DisplayName("Address")]
        public string Address { get; set; }

        [DisplayName("City")]
        public string City { get; set; }

        [DisplayName("Zip")]
        public string Zip { get; set; }

        [DisplayName("State")]
        public string State { get; set; }


    }
}
Run Code Online (Sandbox Code Playgroud)

我不知道为什么我会收到此错误:EntityType 'MyProfile' has no key defined. Define the key for this EntityType.当它尝试添加到数据库时db.Profiles.Add(profile);.

Bri*_*ler 36

哪个领域是你的关键?无论它是什么 - ProfileId或UserId - 将名称更改为MyProfileId或Id,或者在其上放置[Key]属性.