Jon P Smith
Jon P Smith
Thanks @ajcvickers for the update. You said > ... hence we have models that change rapidly as we add new features/regression cases to the tests. This is exactly the situation...
Hi @ajcvickers, I have been using a version of the `EnsureClean` found in the EF Core test code for some time now with excellent results. I'm about to embark on...
Hi @TechAspirant, Let me say back to you on what you are asking. You want every Tenant should have a Tenant Admin User - is that correct? If so here...
Hi @TanmayKhalikar, I am not sure how you add an Tenant Admin Role or Tenant User Role to created Tenant like Example3. The typical way is to use the `IAuthRolesAdminService`...
Hi @akema-trebla, Hard to say, but are some ideas: - If you are updating an application that started before version 6.0.0, then you need to read the [UpdateToVersion6.md](https://github.com/JonPSmith/AuthPermissions.AspNetCore/blob/main/UpdateToVersion6.md), especially the...
Hi @akema-trebla, This sounds like the problem I had when I stored the sharding data in a json file. It turns out that the`IOptionsMonitor` (and all the IOptions methods) can't...
Hi @akema-trebla, I have recreated your problem using Example7 and is my initial result is that `await context.Database.CanConnectAsync()` doesn't with EF Core NET 8. See line [Example7.SingleLevelShardingOnly/EfCoreCode/ShardingOnlyTenantChangeService, line 134](https://github.com/JonPSmith/AuthPermissions.AspNetCore/blob/735dba47700220e5644cdc2d4f74f58222e97ba0/Example7.SingleLevelShardingOnly/EfCoreCode/ShardingOnlyTenantChangeService.cs#L154). My...
Did you remove the `await context.Database.CanConnectAsync()` in your `ITenantChangeService` service (see my [previous comment](https://github.com/JonPSmith/AuthPermissions.AspNetCore/issues/97#issuecomment-1847411615)), and did that solve the "sign up" problem?
Hi @akema-trebla When I looked your "Sign up for a new tenant" (SignUp for short) with sharding problem I found that the current code doesn't always remove the `ShardingEntry` and...
Hi @akema-trebla, I have just released version 6.2.0 which is much better at telling what the Exception was. If you have something in your code you can find it more...