Why do aspnet_users use guid for id instead of incrementing int?
Also, is there any reason not to use this in other tables as a primary key? This is a bit strange, since I know that most of the applications I have worked with in the past just use the regular int system.
I am also going to use this identifier to match the extended detail table for additional custom prefs, etc. I also considered using a link table with guid and int in it, but decided that I think I really need the user id to be public.
Although I would like to have an int (itโs easier to search for a user, etc. stackoverflow.com/users/12345/user-name), since I just want to have a username, I donโt think I need to move this item around and cause extra search complexity when I need to find user int.
Thanks for any help with this.
Chris barry
source share