由于我们在 FormsAuthentication 中没有 UserId 所以我想通过它。这是我的代码
public bool IsValid(string email, string password)
{
bool IsValid = false;
var user = db.Users.FirstOrDefault(u => u.Email == email);
if (user != null)
{
if (user.Password == EncryptPassword(password))
{
IsValid = true;
}
}
return IsValid;
}
if (user.IsValid(user.Email, user.Password))
{
FormsAuthentication.SetAuthCookie(user.Email + "|" + user.Id, true);
return RedirectToAction("Index", "TestValidUser");
}
现在问题是user.Id
始终为 0FormsAuthentication.SetAuthCookie()
我该如何设置?