fix factory
This commit is contained in:
parent
386b5faafa
commit
c4915394ae
@ -14,8 +14,8 @@ public class TenantDbContextFactory : ITenantDbContextFactory
|
|||||||
public ITenantDbContext GetDbContext(string tenant)
|
public ITenantDbContext GetDbContext(string tenant)
|
||||||
{
|
{
|
||||||
// Create a scope to resolve DbContext
|
// Create a scope to resolve DbContext
|
||||||
using (var scope = _serviceProvider.CreateScope())
|
var scope = _serviceProvider.CreateScope();
|
||||||
{
|
|
||||||
return tenant switch
|
return tenant switch
|
||||||
{
|
{
|
||||||
Clienti.Maras => scope.ServiceProvider.GetRequiredService<Maras_DbContext>(),
|
Clienti.Maras => scope.ServiceProvider.GetRequiredService<Maras_DbContext>(),
|
||||||
@ -26,4 +26,3 @@ public class TenantDbContextFactory : ITenantDbContextFactory
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user