Please I need assistance in implementing a custom way of assigning claims to authenticated users. On successful login,
var result = await SignInManager.Pass
Then in the view page
@(((ClaimsIdentity)User.Identity).FindFirstValue("firstName"))
It will show the authenticated user firstName.
and import the following packages at the top of the page
@using Microsoft.AspNet.Identity @using System.Security.Claims;