ASP.NET SQL Membership Tables

What is the best way to link my tables (e.g. Customer, Orders) to users in membership tables. Is there any way to bind it using int somehow?

+5
source share
1 answer

You can use User.ProviderUserKey, but this is a GUID, not an int. This will appear in the UserId field in the aspnet_Membership table

+4
source

All Articles