Prakash

Prakash

  • NA
  • 258
  • 74k

Web Api

Oct 21 2015 6:14 AM


 hello experts 
 
 i am using below code for login and i get the error below plz help
 
"The entity type ApplicationUser is not part of the model for the current context."

 
 
public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
{
if (!ModelState.IsValid)
{
return View();
}
// This doesn't count login failures towards account lockout
// To enable password failures to trigger account lockout, change to shouldLockout: true
var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe,shouldLockout:false);
switch (result)
{
case SignInStatus.Success:
return RedirectToLocal(returnUrl);
//case SignInStatus.LockedOut:
// return View("Lockout");
case SignInStatus.RequiresVerification:
return RedirectToAction("SendCode", new { ReturnUrl = returnUrl, RememberMe = model.RememberMe });
case SignInStatus.Failure:
default:
ModelState.AddModelError("", "Invalid login attempt.");
return View(model);
}
}
 
 
 

Answers (3)