Skip to content

Commit 43d83c3

Browse files
davidmrdavidbachuv
andauthored
Apply suggestions from code review
Co-authored-by: Varshitha Bachu <[email protected]>
1 parent 3ba70fc commit 43d83c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/azure-functions/durable/quickstart-mssql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If this isn't the case, we suggest you start with one of the following articles,
4040
> [!NOTE]
4141
> If your app uses [Extension Bundles](../functions-bindings-register.md#extension-bundles), you should ignore this section as Extension Bundles removes the need for manual Extension management.
4242
43-
You'll need to install the latest version of the MSSQL storage provider Extension on NuGet. This usually means to include a reference to it in your `.csproj` file and building the project.
43+
You'll need to install the latest version of the MSSQL storage provider Extension on NuGet. This usually means including a reference to it in your `.csproj` file and building the project.
4444

4545
The Extension package to install depends on the .NET worker you're using:
4646
- For the _in-process_ .NET worker, install [`Microsoft.DurableTask.SqlServer.AzureFunctions`](https://www.nuget.org/packages/Microsoft.DurableTask.SqlServer.AzureFunctions).
@@ -148,7 +148,7 @@ Below is an example `local.settings.json` assigning the default Docker-based SQL
148148
149149
### Update host.json
150150

151-
Edit the storage provider section of the `host.json` file so it sets the `type` to `mssql`. We'll also specify the connection string variable name, `SQLDB_Connection`, under `connectionStringName`. We'll set `createDatabaseIfNotExists` to `true`; this setting creates a database named `DurableDB` if one doesn't already exists, with collation `Latin1_General_100_BIN2_UTF8`.
151+
Edit the storage provider section of the `host.json` file so it sets the `type` to `mssql`. We'll also specify the connection string variable name, `SQLDB_Connection`, under `connectionStringName`. We'll set `createDatabaseIfNotExists` to `true`; this setting creates a database named `DurableDB` if one doesn't already exist, with collation `Latin1_General_100_BIN2_UTF8`.
152152

153153
```json
154154
{

articles/azure-functions/durable/quickstart-netherite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If this isn't the case, we suggest you start with one of the following articles,
4141
> [!NOTE]
4242
> If your app uses [Extension Bundles](../functions-bindings-register.md#extension-bundles), you should ignore this section as Extension Bundles removes the need for manual Extension management.
4343
44-
You'll need to install the latest version of the Netherite Extension on NuGet. This usually means to include a reference to it in your `.csproj` file and building the project.
44+
You'll need to install the latest version of the Netherite Extension on NuGet. This usually means including a reference to it in your `.csproj` file and building the project.
4545

4646
The Extension package to install depends on the .NET worker you are using:
4747
- For the _in-process_ .NET worker, install [`Microsoft.Azure.DurableTask.Netherite.AzureFunctions`](https://www.nuget.org/packages/Microsoft.Azure.DurableTask.Netherite.AzureFunctions).

0 commit comments

Comments
 (0)