I am trying to get the currently logged in Users claims (from the database), but everything I try either requires a ClaimsPrinicpal
or a User
which I don't seem to have. Ive tried searching forums, and searching SO with no luck. What am I missing?
public IEnumerable<Claim> PullCurrentUserClaims(UserManager<ApplicationUser> u)
{
return u.;
}