I am using AspNetZero v7.0.0 MVC Core & JQuery and noticed that this version has an InstallController that appears to be able to install the database on first run.. There is not any documentation on that feature so is this is the case?. Could you possible elaborate a bit on it for me?
4 Answer(s)
-
0
This has a document you can look at https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Features-Mvc-Core-Setup-Page
-
0
Ok so the install page is loading, but not sure which account and password to use
Under the connection string there is no field to enter a user name associated with the password, so is it the SA account ?
-
0
For
trust connection
, it means windows authentication.if you want to use sql authentication, you can use
User Id
andPassword
.See https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/connection-string-syntax
-
0
Thanks for the explaination..