I have an existing project and SQL database with a Users table (let's call it ""MyOldUsersTable") and attached tables (address, phones, positions, etc) with PK-FK relationships.
NB: This database doesn't use either Membership or Identity. It is a database extracted from another project and "MyOldUsersTable" doesn't contain any login info (password, last login, etc...)
I started by using a Web Api project with identity, but it generates the defaults tables (AspNetUsers, AspNetUserRoles, AspNetUserLogins...)
Goal: get ASP.NET Identity to use the existing tables
I tried this solution: How can I change the table names when using Visual Studio 2013 ASP.NET Identity? But Identity renames "MyOldUsersTable" to "MyOldUsersTable1" and Renames the "AspNetUsers" table to "MyOldUsersTable". That wasn't very usefull.
What would be the best way to proceed? I see three options:
- Solution 1: Move the "MyOldUsersTable" table fields to the "ASPNETUser" table and change the PK-FK with the other tables
- Solution 2: Make Identity understand that the users table is now "MyOldUsersTable"
- Solution 3: Keep the two systems and just add a PK-FK between "AspNetUsers" and "MyOldUsersTable"