Skip to content

Commit f918f38

Browse files
authored
Merge pull request #197803 from RyanHill-MSFT/issues/92724-tutorial-fixes
(Azure CXP Community) tutorial clarity
2 parents b28e7ca + 6029461 commit f918f38

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)