ASP.net identity: How to get current IdentityUser (ApplicationUser)? Where is UserManager.FindById?

坚强是说给别人听的谎言 提交于 2019-12-06 02:16:44

问题


I started with the default template for ASP.net in VS2013. I want to get the current user object. This should be possible without directly accessing the database.

In the documentation, this looks very easy: http://blogs.msdn.com/b/webdev/archive/2013/10/16/customizing-profile-information-in-asp-net-identity-in-vs-2013-templates.aspx

So it should be

var currentUser = manager.FindById(User.Identity.GetUserId()); 

But FindById is missing! Since several hours, I have been trying to use FindByIdAsync instead. But I think I get a dead lock.

public class UserManager : UserManager<IdentityUser>
{
    public UserManager()
        : base(new UserStore<IdentityUser>(new ApplicationDbContext()))
    {
    }

    public async System.Threading.Tasks.Task<IdentityUser> GetCurrentUser()
    {
        var user = await FindByIdAsync(HttpContext.Current.User.Identity.Name);
        return user;
    }
}

The calling propery:

private IdentityUser_CurrentUser;
protected IdentityUser CurrentUser
{
    get
    {
        if (_CurrentUser == null)
        {                   
            var manager = new UserManager();
            var result = manager.GetCurrentUser();
            //-- STOPS HERE!!
            _CurrentUser = result.Result;
        }
        return _CurrentUser;
    }
}

Any help would be appreciated! Either to show me where FindById is gone or how to make my code work. Or is there another way to load the IdentityUser?

ADDED

In the user manager, FindById is not found, but this.FindById is found. I will add the screenshots. This is not a proper solution because I do not understand, why this is happening, or can someone explain this behaviour? I attach 2 screens with intellisense open. I also want to mention, that it is not a problem of intellisense - the code does not compile if I do not add this.

Intellisense entering "Fi":

.

Intellisense entering "this.Fi":

This way, at least I am not stuck any more.


回答1:


FindById is an extension method coming from Microsoft.AspNet.Identity.UserManagerExtensions class. It is a part of Microsoft.AspNet.Identity.Core nuget package.

You should add

using Microsoft.AspNet.Identity;

to your code to start using non-async methods.



来源:https://stackoverflow.com/questions/25483227/asp-net-identity-how-to-get-current-identityuser-applicationuser-where-is-us

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!