asp.net core get current user in service 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;