I have added a series of ASPNET database tables for roles, user and membership management to my existing SQL database using aspnet_regsql.exe.
There is already a user table in the existing database which contains information (ID, Name, Address, Postcode, etc) for a number of users. What I want to achieve to associate the new aspnet_Users table with the existing user table.
Is there any option or options for recommendation please? Thanks
Cheers, Alex
The UserKey, called UserId in the ASPnet membership tables, is the GUID which identifies a user. You can add a
UserKey
column to yourUsers
table and then start doing dangerous things like:No warranty, expressed or implied, is provided by Microsoft (or me) if you want to fiddle about directly in their tables.