Dear DotNet dudes
I have added the custom field AliasName to my AspNetUsers table.
I have also added AliasName to the IdentityUser class:
public class ApplicationUser : IdentityUser     {         public string AliasName { get; set; }
Please tell me how I can refer to this field for the current user, to change the Text property of my label: lblAliasName. E.g.
lblAliasName.Text = Context.User.Identity.AliasName;
The above doesn't work, but is just an indication of what I am trying to achieve.
Any suggestion are greatly appreciated.
Kind regards
Jubbs

Go to the complete details ...