display current user in layout with claims asp.net core code example
Example 1: how get the user show mvc controller core 3.1
string userName = _httpContextAccessor.HttpContext.User.Identity.Name;
Example 2: how get the user show mvc controller core 3.1
private readonly IHttpContextAccessor _httpContextAccessor;
//constructor then
_httpContextAccessor = httpContextAccessor;