How do you get the UserID of a User object in ASP.Net MVC?

asp.netMembership

asp.net Problem Overview


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?

asp.net Solutions


Solution 1 - asp.net

It seems you cannot get it from the User object but you can get it this way:

Guid userGuid = (Guid)Membership.GetUser().ProviderUserKey;

Solution 2 - asp.net

Here is the solution:

Include:

using Microsoft.AspNet.Identity;

Then use extension methods:

User.Identity.GetUserId();

Solution 3 - asp.net

Firstly, this answer is not strictly an MVC answer, but an ASP.NET answer. The fact that your site is MVC is irrelevant 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) asp.net membership provider that comes out of the box with .net. This is hinted by the fact that you said

  • aspnet_Users.UserID
  • UserID is a uniqueidentifier (read: GUID).

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 Name property. I'm assuming this name is their Display Name and it is unique. Whatever value you are putting in here, it HAS TO BE UNIQUE.

From this, you can grab the user's guid.

Check this out.

using System.Web.Security;

....

// NOTE: This is a static method .. which makes things easier to use.
MembershipUser user = Membership.GetUser(User.Identity.Name);
if (user == null)
{
    throw new InvalidOperationException("User [" + 
        User.Identity.Name + " ] not found.");
}

// Do whatever u want with the unique identifier.
Guid guid = (Guid)user.ProviderUserKey;

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 / Suggestion

As such, i would CACHE that result so you don't need to keep hitting the database.

... cont from above....
Guid guid = (Guid)user.ProviderUserKey;

Cache.Add(User.Identity.Name, user.UserID); // Key: Username; Value: Guid.

Otherwise, you can create your own Identity class (which inherits from IIdentity) and 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

Solution 4 - asp.net

User.Identity is an IPrincipal - typically of type System.Web.Security.FormsIdentity

It doesn't know anything about UserIDs - it's 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 SimpleMembershipProvider you can do this:

WebSecurity.GetUserId(User.Identity.Name)   // User is on ControllerBase

(Where WebSecurity is in the nuget package Microsoft.AspNet.WebPages.WebData in WebMatrix

You can also use

WebSecurity.CurrentUserName
WebSecurity.CurrentUserId

(if you're using ASPNetMembershipProvider which is the older more complex ASPNET membership system then see the answer by @eduncan911)

Solution 5 - asp.net

If you are using the ASP.NET Membership (which in turn uses the IPrincipal object):

using System.Web.Security;
{
  MembershipUser user = Membership.GetUser(HttpContext.User.Identity.Name);
  Guid guid = (Guid)user.ProviderUserKey;
}

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:

if (User.Identity.IsAuthenticated)
{
  ...
}

So, putting it all together:

using System.Web.Security;
{
  if (User.Identity.IsAuthenticated)
  {
    MembershipUser user = Membership.GetUser(HttpContext.User.Identity.Name);
    Guid guid = (Guid)user.ProviderUserKey;
  }
}

Solution 6 - asp.net

Best Option to Get User ID

Add Below references

using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Owin.Security;*

public myFunc()
{
   .....
   // Code which will give you user ID is 
   var tmp = User.Identity.GetUserId();

}

Solution 7 - asp.net

If you are using your own IPrincipal object for authorization, you just need to cast it to access the Id.

For example:

public class MyCustomUser : IPrincipal
{
    public int UserId {get;set;}

    //...Other IPrincipal stuff
}

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.

Solution 8 - asp.net

using System.Web.Security;

MembershipUser user = Membership.GetUser(User.Identity.Name); 
int id = Convert.ToInt32(user.ProviderUserKey);

Solution 9 - asp.net

Its the ProviderUserKey property.

System.Web.Security.MembershipUser u;
u.ProviderUserKey

Solution 10 - asp.net

Simple....

int userID = WebSecurity.CurrentUserId;

Solution 11 - asp.net

Usually you can just use WebSecurity.currentUserId, but if you're in AccountController just after the account has been created and you want to use the user id to link the user to some data in other tables then WebSecurity.currentUserId (and all of the solutions above), unfortunately, in that case returns -1, so it doesn't work.

Luckily in this case you have the db context for the UserProfiles table handy, so you can get the user id by the following:

UserProfile profile = db.UserProfiles.Where(
    u => u.UserName.Equals(model.UserName)
).SingleOrDefault();

I came across this case recently and this answer would have saved me a whole bunch of time, so just putting it out there.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpupenoView Question on Stackoverflow
Solution 1 - asp.netpupenoView Answer on Stackoverflow
Solution 2 - asp.netfaisaleView Answer on Stackoverflow
Solution 3 - asp.netPure.KromeView Answer on Stackoverflow
Solution 4 - asp.netSimon_WeaverView Answer on Stackoverflow
Solution 5 - asp.neteduncan911View Answer on Stackoverflow
Solution 6 - asp.netuser3175805View Answer on Stackoverflow
Solution 7 - asp.netebrownView Answer on Stackoverflow
Solution 8 - asp.netuser3361768View Answer on Stackoverflow
Solution 9 - asp.netAlexView Answer on Stackoverflow
Solution 10 - asp.netIzztraabView Answer on Stackoverflow
Solution 11 - asp.netjames_s_taylerView Answer on Stackoverflow