how to use usermanager on a blazor page?
问题 hello community I have a question how can I use usermanager in a blazor page webassembly ? by injecting this: @inject UserManager<ApplicationUser> UserManager; I get the indication that a usage directive is missing as the class the ApplicationUser class is on the server and the client does not have access to the server. this is my code in blazor page: @page "/index" @inject AuthenticationStateProvider AuthenticationStateProvider @using Microsoft.AspNetCore.Identity; @inject UserManager