Skip to content

Commit 3ba70fc

Browse files
committed
pass acrolynx check
1 parent 703930c commit 3ba70fc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ Durable Functions supports several [storage providers](durable-functions-storage
1616
1717
## Note on data migration
1818

19-
Migration of [Task Hub data](durable-functions-task-hubs.md) across storage providers isn't currently supported. Function apps with existing runtime data will start with a fresh, empty task hub after switching to the MSSQL backend. Similarly, the task hub contents created with MSSQL cannot be preserved when switching to a different storage provider.
19+
Migration of [Task Hub data](durable-functions-task-hubs.md) across storage providers isn't currently supported. Function apps with existing runtime data will start with a fresh, empty task hub after switching to the MSSQL backend. Similarly, the task hub contents created with MSSQL can't be preserved when switching to a different storage provider.
2020

2121
## Prerequisites
2222

23-
The following steps assume that you are starting with an existing Durable Functions app and are familiar with how to operate it.
23+
The following steps assume that you're starting with an existing Durable Functions app and are familiar with how to operate it.
2424

2525
In particular, this quickstart assumes that you have already:
2626
1. Created an Azure Functions project on your local machine.
2727
2. Added Durable Functions to your project with an [orchestrator function](durable-functions-bindings.md#orchestration-trigger) and a [client function](durable-functions-bindings.md#orchestration-client) that triggers it.
2828
3. Configured the project for local debugging.
2929

30-
If this is not the case, we suggest you start with one of the following articles, which provides detailed instructions on how to achieve all the requirements above:
30+
If this isn't the case, we suggest you start with one of the following articles, which provides detailed instructions on how to achieve all the requirements above:
3131

3232
- [Create your first durable function - C#](durable-functions-create-first-csharp.md)
3333
- [Create your first durable function - JavaScript](quickstart-js-vscode.md)
@@ -42,7 +42,7 @@ If this is not the case, we suggest you start with one of the following articles
4242
4343
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.
4444

45-
The Extension package to install depends on the .NET worker you are using:
45+
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).
4747
- For the _isolated_ .NET worker, install [`Microsoft.Azure.Functions.Worker.Extensions.DurableTask.SqlServer`](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.DurableTask.SqlServer).
4848

@@ -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 does not 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 exists, with collation `Latin1_General_100_BIN2_UTF8`.
152152

153153
```json
154154
{

0 commit comments

Comments
 (0)