Is there a way to declare the connection parameter...
# orm-help
n
Is there a way to declare the connection parameters dynamically on a per-request basis? Use case: On a multi-tenant B2B app where there is only one app instance but separate databases per tenant, each request may connect to a different customer database.
r
This is only possible via multiple
PrismaClient
instances i.e. 1 for each tenant.