aspnetboilerplate: Problem with Single Deployment - Multiple Database approach
Hi everyone, i am building a project where uses Single Deployment - Multiple Database.
In my project, when i try to create a new tenant db with a specified connection string it throw an exception that the db was not created. Does CreateOrMigrateForTenant method of TenantManager class is not work? Are there docs for Single Deployment - Multiple Database approach. Thank for your support.
My exception’s message:
Instance failure.
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 15 (7 by maintainers)
it’s work now. thank you 👍
No need to escape characters when passing a connection string on the web interface, such as
\\
Change
data source=XXX\\SQLEXPRESS;initial catalog=LukeDatY;Trusted_Connection=True;
todata source=XXX\SQLEXPRESS;initial catalog=LukeDatY;Trusted_Connection=True;