Andrew White
Andrew White
Hi, sorry for the slow reply. No, there is no specific reason except that the store came before the get all method if I remember correctly and I didn't implement...
Nothing special other than normal EFCore mysql support. Looks like they provide their [own connector](https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core.html) and Finbuckle.MultiTenant should work exactly as described in [it's documentation](https://www.finbuckle.com/MultiTenant/Docs/v6.10.0/EFCore).
@HDScarpe do you think you can recreate the issue in a test project with just ASP.NET Core Identity and taking IdentityServer out of the picture for a moment? Also can...
Looking at code where the exception is, looks like its in the `UserManager.GetByNameAsyc` which is this code: https://github.com/dotnet/aspnetcore/blob/51fc6824e30016404964fc96a4a098a764bdbbfa/src/Identity/EntityFrameworkCore/src/UserOnlyStore.cs#L245-L251 which boils down to: ``` Users.FirstOrDefaultAsync(u => u.NormalizedUserName == normalizedUserName, cancellationToken); ```...
@hbulens do you mind posting your dbcontext class or providing a repo that shows the error in action?
Hi, for the Claims strategy you have to make sure IdentityServer (and internally ASP.NET Core Identity) are setting a tenant claim on the principle it generates. I'm snot sure from...
Hi, if you are using the `MultiTenantDbContext` then I recommend creating the context yourself with a dummy tenant and using [IgnoreGlobalFilters](https://learn.microsoft.com/en-us/ef/core/querying/filters#disabling-filters) on your queries to bypass any filtering. I am...
Hi, I'm glad you have a good workaround. In your app pipeline does the multitenant or authentication middleware run first? If multitenant runs first then in theory authentication never sees...
Thanks or the detail. In thinking this through I think you are doing the right thing and I should probably think of a better way to handle this. The tenant...
In the `RedirectToIdentityProvider` handler you get an opportunity to change the redirect url after the default one was created. You can set this on the `OpenIdConnectOptions`. `RedirectToIdentityProviderForSignOut` too. I don't...