Skip to content

Commit 6029461

Browse files
author
Ryan Hill
committed
(Azure CXP Community) tutorial clarity
fixes MicrosoftDocs/azure-docs#92724
1 parent db0c00a commit 6029461

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/app-service/tutorial-dotnetcore-sqldb-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,11 @@ az sql server firewall-rule create --resource-group msdocs-core-sql --server <yo
231231

232232
---
233233

234-
Next, update the appsettings.json file in our local app code with the Connection String of our Azure SQL Database. The update allows us to run migrations locally against our database hosted in Azure. Replace the username and password placeholders with the values you chose when creating your database.
234+
Next, update the appsettings.json file in our local app code with the [Connection String of our Azure SQL Database](#5---connect-the-app-to-the-database). The update allows us to run migrations locally against our database hosted in Azure. Replace the username and password placeholders with the values you chose when creating your database.
235235

236236
```json
237237
"ConnectionStrings": {
238-
"MyDbConnection": "Server=tcp:coredbserver456.database.windows.net,1433;
238+
"MyDbConnection": "Server=tcp:<your-server-name>.database.windows.net,1433;
239239
Initial Catalog=coredb;
240240
Persist Security Info=False;
241241
User ID=<username>;Password=<password>;

0 commit comments

Comments
 (0)