Allow to disable tenant based connection string management #19412
BackDescription
Resolves #19351 #19353
New Rule
- If there is no module-specific connstring then default connstring can't be empty
- If there is any module-specific connstring then default connstring can be empty
Checklist
- I fully tested it as developer / designer and created unit / integration tests
- I've assigned reviewer, related labels and set a milestone for this PR
How to test it?
Use copy to templates command
Apply these changes to
abp/templates/app-pro/aspnet-core/src/MyCompanyName.MyProjectName.Domain.Shared/MyProjectNameDomainSharedModule.cs
file before testingAdd these imports
using Volo.Abp.Modularity;
using Volo.Abp.Data;Under ConfigureServices function add
Configure
(options =>
{
options.Databases.Configure("Saas", database =>
);
});