Base solution for your next web application

Activities of "jholla"

Error: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) PM>

COnnection siting in appsettings.json: { "ConnectionStrings": { "Default": "Server=localhost; Database=(localdb)/MSSQLLocalDB/VMARDb; Trusted_Connection=True;" } }

Also tried:

{ "ConnectionStrings": { "Default": "Server=localhost; Database=VMARDb; Trusted_Connection=True;" } }

I get this error after running Update-Database. How can I fix this?

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

Hello,

Is there a way to generate a new dB instance with every tenant? If that is currently unavail, do you have a resource you can point me to, or a tutorial?

Thanks Much

For the .NET Core version, how hard would it be to add a feature that creates a seperate dB for each tenant?

<ins>SEE HERE:</ins> <a class="postlink" href="https://msdn.microsoft.com/en-us/magazine/dn948104.aspx">https://msdn.microsoft.com/en-us/magazine/dn948104.aspx</a>

<a class="postlink" href="http://benfoster.io/blog/aspnet-core-multi-tenancy-data-isolation-with-entity-framework">http://benfoster.io/blog/aspnet-core-mu ... -framework</a>

<a class="postlink" href="http://stackoverflow.com/questions/32865627/using-multiple-databases-with-single-dbcontext-and-entites-and-generating-conn-s">http://stackoverflow.com/questions/3286 ... ing-conn-s</a>

<a class="postlink" href="http://stackoverflow.com/questions/31170814/entity-framework-6-creating-database-with-multiple-contexts">http://stackoverflow.com/questions/3117 ... e-contexts</a>

Where would I implement the logic to verify that strong passwords be made of lowercase letters, uppercase letters, characters and digits. The number of required characters needs to be a min.length if 12 characters, with no maximum length. Passwords must expire every 90 days as well.

Is there any documentation, explanation or resources you can provide links to that would show me how to implement login sessions that expire after 20 minutes of idle time, using IAbpSession?

The instructions upon download say:

After download <span style="color:#800000">- Open your solution on Visual Studio 2013 or later.

  • Select the 'Web' project as startup project.
  • Open Package Manager Console, select 'EntityFramework' project as Default project and run the
  • EntityFramework's 'Update-Database' command. This will create the database</span>
  • Run the application. User name is 'admin' and password is '123qwe' as default.

When I run the Update-Database cmg, it says {projectName}.Web failed to load

Showing 1 to 7 of 7 entries