What's the best way to tie my tables (like Customer, Orders) to the Users in the membership tables. Is there a way to tie it using an int somehow?
+2
A:
You can use the User.ProviderUserKey
but that is a GUID, not an int. That will map to the UserId field in the aspnet_Membership table
brendan
2010-10-15 15:10:37
Yep, that's the way i do it.
RPM1984
2010-10-15 22:43:29