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)

Most upvoted comments

it’s work now. thank you 👍

Did I give a correct connection string? The format is correct, but the server name does not seem to connect successfully.


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; to data source=XXX\SQLEXPRESS;initial catalog=LukeDatY;Trusted_Connection=True;