Skip to content

Commit 1707fb1

Browse files
authored
Consolidate note about supported configuration
1 parent b943db7 commit 1707fb1

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

articles/azure-functions/durable/durable-functions-entities.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Entity functions define operations for reading and updating small pieces of stat
1818
Entities provide a means for scaling out applications by distributing the work across many entities, each with a modestly sized state.
1919
::: zone pivot="csharp,javascript,python"
2020
> [!NOTE]
21-
> Entity functions and related functionality are only available in [Durable Functions 2.0](durable-functions-versions.md#migrate-from-1x-to-2x) and above. They are currently supported in .NET in-proc, .NET isolated worker, JavaScript, and Python, but not in PowerShell or Java.
21+
> Entity functions and related functionality are only available in [Durable Functions 2.0](durable-functions-versions.md#migrate-from-1x-to-2x) and above. They are currently supported in .NET in-proc, .NET isolated worker, JavaScript, and Python, but not in PowerShell or Java. Furthermore, entity functions for .NET Isolated are supported when using the Azure Storage or Netherite state providers, but not when using the MSSQL state provider.
2222
::: zone-end
2323
::: zone pivot="powershell,java"
2424
>[!IMPORTANT]
@@ -162,9 +162,6 @@ public static Task DispatchAsync([EntityTrigger] TaskEntityDispatcher dispatcher
162162
}
163163
```
164164

165-
> [!NOTE]
166-
> Durable Entities for the Isolated worker process is not currently supported when using the [MSSQL state provider](./durable-functions-storage-providers.md#mssql).
167-
168165
### [Isolated worker process](#tab/isolated-process/class-based)
169166

170167
The following example shows the implementation of the `Counter` entity using classes and methods.
@@ -220,10 +217,6 @@ public static Task RunEntityStaticAsync([EntityTrigger] TaskEntityDispatcher dis
220217
return dispatcher.DispatchAsync<Counter>();
221218
}
222219
```
223-
224-
> [!NOTE]
225-
> Durable Entities for the Isolated worker process is not currently supported when using the [MSSQL state provider](./durable-functions-storage-providers.md#mssql).
226-
227220
---
228221
::: zone-end
229222
::: zone pivot="javascript"

0 commit comments

Comments
 (0)