You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just trying to give back after all my learning questions!
I was searching for how to seed a test Tenant and because everything on the Tenant class itself was protected I had some difficulty finding out how to do it when I stumbled upon ITenantManager. I didn't find any reference to this in any question so I thought of sharing it here so somebody else can gain from it later.
The code in DbMigrator
publicclassTenantDataSeedContributor:IDataSeedContributor,ITransientDependency{publicILogger<MyEventDbMigrationService>Logger{get;set;}privatereadonlyITenantRepository_tenantRepository;privatereadonlyITenantManagertenantManager;publicTenantDataSeedContributor(ITenantRepositorytenantRepository,ITenantManagertenantManager){_tenantRepository=tenantRepository;this.tenantManager=tenantManager;Logger=NullLogger<MyEventDbMigrationService>.Instance;}publicasyncTaskSeedAsync(DataSeedContextcontext){if(await_tenantRepository.GetCountAsync()>0){return;}vartenant=awaittenantManager.CreateAsync(name:"TestTenant",editionId:Guid.Parse("D8441142-EDCB-2C0B-643C-39FC1FFDE78B"));await_tenantRepository.InsertAsync(tenant,true);Logger.LogInformation($"Inserted new TestTenant");}}
Hopefully this is not considered spamming the discussion...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Just trying to give back after all my learning questions!
I was searching for how to seed a test Tenant and because everything on the Tenant class itself was protected I had some difficulty finding out how to do it when I stumbled upon ITenantManager. I didn't find any reference to this in any question so I thought of sharing it here so somebody else can gain from it later.
The code in DbMigrator
Hopefully this is not considered spamming the discussion...
Beta Was this translation helpful? Give feedback.
All reactions