Store does not implement IUserLockoutStore<TUser>
问题 I'm trying to implement own DAL for asp.net Identity 2.0 with functionality that I need. I don't need Account Lockout functionality. But When I try to call var result = await SignInManager.PasswordSignInAsync(model.Login, model.Password, model.RememberMe, shouldLockout: false); I get System.NotSupportedException:Store does not implement IUserLockoutStore<TUser>. So why should I need to implement IUserLockoutStore if I dont need it? 回答1: See this answer: When implementing your own IUserStore,