Eugene Kallaur

Results 3 comments of Eugene Kallaur

Points to consider: - in the MultiTenantIdentityDbContext the PK is changed to include TenantId see `MultiTenantIdentityDbContext ` ` builder.Entity().IsMultiTenant().AdjustUniqueIndexes().AdjustKeys(builder);` - UserStore creates IdentityUserLogin internally and adds it to the DbContext....

> hi [@ekallaur](https://github.com/ekallaur) that is a good approach. In the right settings the regular user store should work though. Another option is to set [`TenantNotSet` mode to overwrite](https://www.finbuckle.com/MultiTenant/Docs/v9.1.3/EFCore#tenant-not-set-mode) in which...

@AndrewTriesToCode just for the record: - when UserLogin PK has no TenantId and the same external IdP is used for different tenants, then the error occur during add UserLogin -...