goforebroke
goforebroke
@AndrewTriesToCode Hi Andrew, After reading through this, the current implementation of "OnTenantNotResolved" checks if there is an identifier found based on your strategy(s). You are considering reverting "OnTenantNotResolved" to its...
After a little more research, reading [](https://github.com/Finbuckle/Finbuckle.MultiTenant/issues/374), and looking at your sample with Identity Server 4,I adjusted the order where I add "UseMultiTenant()". I have things working now
@natelaff sorry I have taken so long to get back to you. I have been super busy with my regular job outside of this personal project. I have two Identity...
Hi Andrew, Prior to the upgrade, I handled non http requests with something like this ``` using var scope = _serviceProvider.CreateScope(); var accessor = scope.ServiceProvider.GetRequiredService(); var multiTenantContext = new MultiTenantContext...
Hi Cecil, In a system that I am creating, I am using a webhook (Customer Created Event) in a separate API that publishes an integration event that links the stripe...
Hi Andrew, At this time no, but I currently have a work around.
Hi Andrew, Thx for getting back to me. I will look into your suggestions. As a work around I created a friendly identifier column that is 4 to 8 characters...
Hi Andrew, Thanks for getting back to me very quickly. I start the SQL trace the moment before the "PasswordReset" page is loaded. After the reset button is pressed, the...
Andrew, I have configurations for all the identity tables. The identity user has a couple of extra columns along with a non clustered index on the tenant id column that...
Hi Andrew... It sure did... Should have looked at the updated documentation... public sealed class IdentityApiDbContextDesignFactory : IDesignTimeDbContextFactory { public MultiTenantIdentityDbContext CreateDbContext(string[] args) { const string connectionString = "Server=.; THE...