How to get Asp.net Core Identity User in View core 3.1 code example
Example 1: how get the user show mvc controller core 3.1
public string LoggedInUser => User.Identity.Name;
Example 2: how get the user show mvc controller core 3.1
private readonly IHttpContextAccessor _httpContextAccessor;
//constructor then
_httpContextAccessor = httpContextAccessor;