0

这个查询有什么问题,为什么它没有为我返回一个用户对象。我可以验证用户是否已成功创建,我可以在数据库中看到记录,但我无法查询该对象,因此我可以在另一个表中使用新创建的 UserId 作为 FK。

[HttpPost]
        [AllowAnonymous]
        [ValidateAntiForgeryToken]
        public ActionResult Register(RegisterModel model)
        {
            if (ModelState.IsValid)
            {
                // Attempt to register the user
                try
                {
                    WebSecurity.CreateUserAndAccount(model.UserName, model.Password, new {AccountType = model.AccountType  }); 
                    WebSecurity.Login(model.UserName, model.Password);

                    var userProfile = db.UserProfiles.Local.SingleOrDefault(u => u.UserName == User.Identity.Name)
                    ?? db.UserProfiles.SingleOrDefault(u => u.UserName == User.Identity.Name);

                    if (userProfile == null)
                    {
                        throw new Exception("no userProfile for this user");
                    }
                    if (userProfile.AccountType == AccountType.Retailer)
                    {
                        return RedirectToAction("Create", "Retailer");
                    }

                    return RedirectToAction("Index", "Home");
                }
                catch (MembershipCreateUserException e)
                {
                    ModelState.AddModelError("", ErrorCodeToString(e.StatusCode));
                }
            }

            // If we got this far, something failed, redisplay form
            return View(model);
        }

这是 AccountType 的枚举

public enum AccountType
    {
        Retailer = 1,
        Customer = 2,
        Manager = 3,
        Employee = 4
    }

谢谢,我正在寻找如何检索 UserProfile 对象或登录用户的 ID

4

1 回答 1

0

而不是使用User.Identity.Name,尝试使用查询model.UserName

于 2013-10-23T19:12:41.670 回答