ASP.NET Core 3.1 how to get calling user from HttpContext 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;