Skip to content

Commit be338e3

Browse files
committed
small errors
1 parent 6966e5d commit be338e3

3 files changed

Lines changed: 13 additions & 12 deletions

File tree

docs/tools/visual-studio-code/create-azure-function-with-mssql-OE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ ms.date: 8/24/2022
1515
[!INCLUDE [SQL Server ASDB, ASDBMI, ASDW ](../../includes/applies-to-version/sql-asdb-asdbmi-asa.md)]
1616

1717
## Overview
18-
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings,
19-
see further documentation [here](create-azure-function-with-mssql.md).
18+
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings, see further documentation [here](create-azure-function-with-mssql.md).
2019

2120
## From the Object Explorer
2221
To create an Azure Function from a specific `Table` or `View` in object explorer (OE), right-click on a table or view from a connected server in SQL Serve object explorer and select `Create Azure Function with SQL Binding.`
@@ -50,25 +49,26 @@ If you already have connection strings stored in the local.settings.json, then t
5049

5150
:::image type="content" alt-text="Prompt to select connection string setting" source="./media/create-azure-function-with-mssql/create-new-sql-connection-string-setting.png":::
5251

53-
If you `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
52+
If you select `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
5453

5554
:::image type="content" alt-text="Prompt to enter connection string" source="./media/create-azure-function-with-mssql/enter-connection-string-setting-name.png":::
5655

5756
If you're creating the `Azure Function with SQL Binding` to an existing Azure Function project, then the extension will prompt you whether you would like to include the password for the connection string in the local.settings.json file.
5857

5958
:::image type="content" alt-text="Prompt to save the password to the SQL connection string" source="./media/create-azure-function-with-mssql/password-prompt.png":::
6059

61-
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file, and you'll need to manually add the password later to the local.settings.json file.
60+
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file (shown below), and you'll need to manually add the password later to the local.settings.json file.
6261

6362
:::image type="content" alt-text="Warning to add password to SQL connection string later manually" source="./media/create-azure-function-with-mssql/do-not-save-password.png":::
6463

6564
The extension will then prompt you to provide the namespace for the Azure Function.
6665

6766
:::image type="content" alt-text="Prompt for namespace for the Azure Function" source="./media/create-azure-function-with-mssql/namespace-for-function.png":::
6867

69-
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file (discussed here).
68+
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file.
7069

7170
A progress notification will appear to indicate that the Azure Function has completed.
71+
7272
:::image type="content" alt-text="Finished creating Azure Function Project" source="./media/create-azure-function-with-mssql/finished-creating-project.png":::
7373

7474
Once the Azure Function is created, the extension will generate the code either for an `Input` or `Output` binding shown [here](create-azure-function-with-mssql.md#generated-code-for-azure-functions-with-sql-bindings).

docs/tools/visual-studio-code/create-azure-function-with-mssql-command-palette.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.date: 8/24/2022
1515
[!INCLUDE [SQL Server ASDB, ASDBMI, ASDW ](../../includes/applies-to-version/sql-asdb-asdbmi-asa.md)]
1616

1717
## Overview
18-
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings
18+
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings, see further documentation [here](create-azure-function-with-mssql.md).
1919

2020
## From the Command Palette
2121
Run the `MS SQL: Create Azure Function with SQL Binding` command from the command palette to create a new function with a SQL binding.
@@ -53,24 +53,25 @@ If you already have connection strings stored in the local.settings.json, then t
5353

5454
:::image type="content" alt-text="Prompt to select connection string setting" source="./media/create-azure-function-with-mssql/create-new-sql-connection-string-setting.png":::
5555

56-
If you `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
56+
If you select `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
5757

5858
:::image type="content" alt-text="Prompt to enter connection string" source="./media/create-azure-function-with-mssql/enter-connection-string-setting-name.png":::
5959

6060
If you're creating the `Azure Function with SQL Binding` to an existing Azure Function project, then the extension will prompt you whether you would like to include the password for the connection string in the local.settings.json file.
6161

6262
:::image type="content" alt-text="Prompt to save the password to the SQL connection string" source="./media/create-azure-function-with-mssql/password-prompt.png":::
6363

64-
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file, and you'll need to manually add the password later to the local.settings.json file.
64+
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file (shown below), and you'll need to manually add the password later to the local.settings.json file.
6565

6666
:::image type="content" alt-text="Warning to add password to SQL connection string later manually" source="./media/create-azure-function-with-mssql/do-not-save-password.png":::
6767

6868
The extension will then prompt you to provide the namespace for the Azure Function.
6969
:::image type="content" alt-text="Prompt for namespace for the Azure Function" source="./media/create-azure-function-with-mssql/namespace-for-function.png":::
7070

71-
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file (discussed here).
71+
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file.
7272

7373
A progress notification will appear to indicate that the Azure Function has completed.
74+
7475
:::image type="content" alt-text="Finished creating Azure Function Project" source="./media/create-azure-function-with-mssql/finished-creating-project.png":::
7576

7677
Once the Azure Function is created, the extension will generate the code either for an `Input` or `Output` binding shown [here](create-azure-function-with-mssql.md#generated-code-for-azure-functions-with-sql-bindings).
@@ -90,7 +91,7 @@ If you already have connection strings stored in the local.settings.json, then t
9091

9192
:::image type="content" alt-text="Prompt to select connection string setting" source="./media/create-azure-function-with-mssql/create-new-sql-connection-string-setting.png":::
9293

93-
If you `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
94+
If you select `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
9495

9596
:::image type="content" alt-text="Prompt to enter connection string" source="./media/create-azure-function-with-mssql/enter-connection-string-setting-name.png":::
9697

@@ -111,7 +112,7 @@ The extension will then prompt you whether you would like to include the passwor
111112

112113
:::image type="content" alt-text="Prompt to save the password to the SQL connection string" source="./media/create-azure-function-with-mssql/password-prompt.png":::
113114

114-
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file, and you'll need to manually add the password later to the local.settings.json file.
115+
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file (shown below), and you'll need to manually add the password later to the local.settings.json file.
115116

116117
:::image type="content" alt-text="Warning to add password to SQL connection string later manually" source="./media/create-azure-function-with-mssql/do-not-save-password.png":::
117118

docs/tools/visual-studio-code/create-azure-function-with-mssql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Table OE Command:
2828
View OE Command:
2929
:::image type="content" alt-text="Screenshot of object explorer context menu to add a SQL binding from View." source="./media/create-azure-function-with-mssql/create-function-view-object-explorer.png":::
3030

31-
See further documentation to create an Azure function with SQL bindings from the command palette [here](create-azure-function-with-mssql-OE.md).
31+
See further documentation to create an Azure function with SQL bindings from the SQL Server object explorer [here](create-azure-function-with-mssql-OE.md).
3232

3333
## From the Command Palette
3434
Run the `MS SQL: Create Azure Function with SQL Binding` command from the command palette to create a new function with a SQL binding.

0 commit comments

Comments
 (0)