0
renevalencia created
Hi!!
I'm migrating my project to aspnetboilerplate. Migrate users from the old AspNetUsers table to AbpUsers, but I was not able to authenticate. The aspnetboilerplate hash password is different from my project, which uses ASP.NET Identity.
Thank you!!
2 Answer(s)
-
0
Hi,
You can create a new PasswordHasher and change UserManager's PasswordHasher to it. You can take a look at this article <a class="postlink" href="http://travis.io/blog/2015/03/24/migrate-from-aspnet-membership-to-aspnet-identity/">http://travis.io/blog/2015/03/24/migrat ... -identity/</a>. It has a sample SqlPasswordHasher class which might work for you.
-
0
I'm going to try it, thanks!!