Check the **connection string** in the `appsettings.json` file under the `.Web` project:
### 创建数据库
查看`.Web`项目下`appsettings.json`文件中的 **连接字符串**:
````json
{
@ -44,28 +46,30 @@ Check the **connection string** in the `appsettings.json` file under the `.Web`
The solution is configured to use **Entity Framework Core** with **MS SQL Server**. EF Core supports [various](https://docs.microsoft.com/en-us/ef/core/providers/) database providers, so you can use another DBMS if you want.
Right click to the `.Web` project and select **Set as StartUp Project**:
解决方案使用 **Entity Framework Core** 和 **MS SQL Server**. EF Core支持[各种](https://docs.microsoft.com/en-us/ef/core/providers/)数据库提供程序,因此你可以根据实际需要使用其他DBMS.
Click the **Login** button, enter `admin` as the username and `1q2w3E*` as the password to login to the application.
单击 **登录** 按钮, 输入用户名`admin`, 密码`1q2w3E*`, 登录应用程序.
The startup template includes the **identity management** module. Once you login, the Identity management menu will be available where you can manage **roles**, **users** and their **permissions**.