I use ASP.NET Identity 2.0 and MVC. I need to logged user\'s name,surname,email etc.. in view. How can get it? I can get just @User.Identity but there no my user class\'s pr
to get information about the user from the controller you must use
User.Identity.GetUserId();
or if you want to get information about the user within your class
HttpContext.Current.User.Identity.GetUserId();