In a multi-tenant SaaS application every client has aseparate DB and different connstring value.
I can't have all connstring values in the web.config.
I can retrieve it from the DB and save it in a sessionvariable (on a client login) but I have to carry that value through the layersto the DAL for every request.
Also, the usage of session vars is not recommended inasp.net mvc.
Is there a better way dealing with this issue?