所以在新的。net Framework 4.5.1中,AspNetUser表没有在有限次数的失败尝试后锁定用户的列。有没有相应的框架或解决方案来取代以前的。net框架中存在的功能?还是我得自己造一个?
在即将发布的2.0 Identity版本中,将支持帐户锁定
配置: manager.UserLockoutEnabledByDefault = true; // Enables ability to lockout for users when created
manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(5);
manager.MaxFailedAccessAttemptsBeforeLockout = 5;
用法:
manager.IsLockedOutAsync(user.Id) // Check for lockout
manager.ResetAccessFailedCountAsync(user.Id); // Clear failed count after success
manager.AccessFailedAsync(user.Id); // Record a failure (this will lockout if enabled)
manager.SetLockoutEnabled(user.Id, enabled) // Enables or disables lockout for a user