在 Rider/Azure Data Studio 中查找数据库的连接字符串。 SQL
Find connection string for DB in Rider/Azure Data Studio. SQL
我通过 docker 使用命令创建了服务器:
docker run -d — name MySQLServer -e ‘ACCEPT_EULA=Y’ -e ‘SA_PASSWORD=your_password123’ -p 1433:1433 mcr.microsoft.com/azure-sql-edge
我正在研究 M1 Mac,一切正常。我创建了测试数据库和表。用于服务器可视化的 Studio 我使用 Rider 或 Azure Data Studio。他们两个都很友好,但我无法从他们两个那里获得我的数据库的连接字符串。我的 .NET 项目中的 appSettings 需要它。我怎样才能找到它?在 Visual Studio 中,我在 DB 的属性中找到了它。在这里我没有看到这样的选项。
我也在使用来自 this tutorial 的 M1 Mac 和 SQL 边缘。
在 ASP.NET WebApp 中,连接字符串看起来像这样:
"ConnectionStrings": {
"Default": "Server=localhost; Database=<insert db name>; User Id=sa; Password=your_password123"
}
我通过 docker 使用命令创建了服务器:
docker run -d — name MySQLServer -e ‘ACCEPT_EULA=Y’ -e ‘SA_PASSWORD=your_password123’ -p 1433:1433 mcr.microsoft.com/azure-sql-edge
我正在研究 M1 Mac,一切正常。我创建了测试数据库和表。用于服务器可视化的 Studio 我使用 Rider 或 Azure Data Studio。他们两个都很友好,但我无法从他们两个那里获得我的数据库的连接字符串。我的 .NET 项目中的 appSettings 需要它。我怎样才能找到它?在 Visual Studio 中,我在 DB 的属性中找到了它。在这里我没有看到这样的选项。
我也在使用来自 this tutorial 的 M1 Mac 和 SQL 边缘。 在 ASP.NET WebApp 中,连接字符串看起来像这样:
"ConnectionStrings": {
"Default": "Server=localhost; Database=<insert db name>; User Id=sa; Password=your_password123"
}