I have some tables that have a uniqueidentifier UserID that relates to aspnet_Users.UserID. When the user submits some data for those tables, since the controller method has an [Authorize] I get a User object. I can get the username with User.Identity.Name, but how do I get the UserID to be able to establish (the ownership) relationship?
|
|
It seems you cannot get it from the User object but you can get it this way:
|
|||||||
|
|
Firstly, this answer is not strictly and MVC answer, but an ASP.NET answer. The fact that your site is MVC is irrelivant to solving the problem, in this case. Hmm. I'm not very sure how you are handling your users in your system but it sounds like you using the (very evil)
With the default forms authentication system, which uses the default FormsIdentity, it only has a single property called Name (as you correctly noted). This means it has only one value where to place some unique user information. In your case, you are putting Name/UserName/DisplayName, in the From this, you can grab the user's guid. Check this out.
So, every time you wish to grab the user information, you need to grab it from the database using the static method above. Read all about the Membership class and MembershipUser class on MSDN. Bonus Answer / SuggestionAs such, i would CACHE that result so you don't need to keep hitting the database.
Otherwise, you can create your own Identity class (which inherits from IIdentity) and add you can add your own custom properties, like UserID. Then, whenever you authenticate (and also on every request) you can set this value. Anyway, this is a hard core solution, so go with the caching, right now. HTH |
|||||||||||||
|
|
If you are using the ASP.NET Membership (which in turn uses the IPrincipal object):
User.Identity always returns the state of the current user, logged in or not. Anonymous or not, etc. So a check for is logged in:
So, putting it all together:
|
|||
|
|
|
It doesn't know anything about UserIDs - just an abstraction of the concept of an 'identity'. The IIdentity interface only has 'Name' for a user, not even 'Username'. If you're using MVC4 with the default
(Where You can also use
(if you're using ASPNetMembershipProvider which is the older more complex ASPNET membership system then see the answer by @eduncan911) |
||||
|
|
|
If you are using your own IPrincipal object for authorization, you just need to cast it to access the Id. For example:
Here is a great tutorial on creating your own Form based authentication. http://www.codeproject.com/KB/web-security/AspNetCustomAuth.aspx That should get you on the right path to creating an authentication cookie for your user and accessing your custom user data. |
|||
|
|
|
Its the ProviderUserKey property.
|
|||
|
|