Base solution for your next web application
Open Closed

Question v7.0.0 #7181


User avatar
0
jdavis01 created

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)
  • User Avatar
    0
    maliming created
    Support Team

    This has a document you can look at https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Features-Mvc-Core-Setup-Page

  • User Avatar
    0
    jdavis01 created

    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 ?

  • User Avatar
    0
    ryancyq created
    Support Team

    For trust connection, it means windows authentication.

    if you want to use sql authentication, you can use User Id and Password.

    See https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/connection-string-syntax

  • User Avatar
    0
    jdavis01 created

    Thanks for the explaination..