I have an old ASP.NET application that uses SQL Membership and uses aspnet_ tables to manage the logins, passwords, and roles, etc.
I'm wanting to rewrite the application using MVC 5 but it uses ASP.NET Identity and I haven't found an easy way to migrate to it using the new authentication method.
I tried following http://www.asp.net/identity/overview/migrations/migrating-an-existing-website-from-sql-membership-to-aspnet-identity but that doesn't seem to work despite getting all of the SQL scripts to execute fine.
When trying to create a brand new ASP.NET MVC 5 application, I'm at a loss on tying it into my current database. I tried just setting the DB Context connection string to my entity framework connection string but it didn't like that.
Does anyone have any experience migrating an old .NET application to MVC 5 and keeping the database of users?