A user should have unique email
instead of UserName
. To achieve this I stored email in UserName and UserName in email column of AspNetUsers
Table. Now I want to access user name in my view. The method User.Identity.GetUserName()
is great, But now I need User.Identity.GetUserEmail()
. I can I implement User.Identity.GetUserEmail()
?
Update:
I have to use User.Identity.GetUserEmail()
in every view. As I use User.Identity.GetUserId()
.
I want to write this method in Microsoft.AspNet.Identity
namespace so that it will be accessible everywhere.