Accessing AuthenticationStateProvider from DbContext or Startup.cs
See original GitHub issueIs it possible to access Blazor’s AuthenticationStateProvider
from a DbContext or in Startup.Configure()
?
I receive this error:
GetAuthenticationStateAsync was called before SetAuthenticationState.
@Blackleones, did you ever get this line to work in your DbContext? ref https://github.com/dotnet/aspnetcore/issues/17442#issuecomment-600222301
var userId = await _currentUserService.GetUserId();
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:18 (16 by maintainers)
Top Results From Across the Web
Inject AuthenticationStateProvider into IDbContextFactory
I found solution! From my view it is bug! Problem is because services.AddDbContextFactory is registered as Singleton.
Read more >ASP.NET Core Blazor authentication and authorization
The built-in AuthenticationStateProvider service for Blazor Server apps obtains authentication state data from ASP.NET Core's HttpContext.User .
Read more >Cannot Consume Scoped Service From Singleton
The Scoped Service Problem. The first thing we want to do, is add a few lines to the ConfigureServices method of our startup.cs....
Read more >Access services inside ConfigureServices using ...
This post shows how you can inject services when configuring IOptions implementations in your Startup class using the IConfigureOptions ...
Read more >How to Build and Secure Web Applications with Blazor
Learn how to build client-side Web apps using Blazor and how to secure them with Auth0 authentication and authorization features.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I don’t know where to write, but I have a similar problem in Blazor Server application, so I will describe my situation.
In short -> I need to get logged in user Id from dbcontext, why ->
Inside dbcontext class I have the following method:
loggedUserService previously worked fine and looks like this ->
Now, in .Net 6 - httpContextAccessor is not working anymore.
Rewriting the loggedUserService to start using AuthenticationStateProvider doesn’t bring results because I get the exception in this case: GetAuthenticationStateAsync was called before SetAuthenticationState.
So, what should I do? Any help?
Hi @danroth27,
SaveChanges
is called from a .razor page, so I’m not sure if that is in the context of the one http request Blazor uses or not. The configured Audit.NET code exists at the application level on the server.I tell that code to find the user id with the following in Program.cs (app doesn’t use Startup.cs):