5

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?

Jason Berkan
  • 8,734
  • 7
  • 29
  • 39
Rod
  • 14,529
  • 31
  • 118
  • 230

1 Answers1

4

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
  • 29,308
  • 20
  • 68
  • 109