1
我想在我的一個應用,從外面Registriation添加用戶如此Accountcontrol之外,我試圖手動添加到數據庫,但它沒有也行,我需要採取hashpassword如何使用AccountController中的Asp.net mvc標識創建新用戶?
我想在我的一個應用,從外面Registriation添加用戶如此Accountcontrol之外,我試圖手動添加到數據庫,但它沒有也行,我需要採取hashpassword如何使用AccountController中的Asp.net mvc標識創建新用戶?
var store = new UserStore<ApplicationUser>(new ApplicationDbContext());
ApplicationUserManager _userManager = new ApplicationUserManager(store);
var manger = _userManager ?? HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
var user = new ApplicationUser() { Email = aspNetUsers.Email, UserName = aspNetUsers.UserName };
var usmanger= manger.Create(user, aspNetUsers.PasswordHash);