Skip to content

Commit 78e3300

Browse files
committed
csx enable info
1 parent 8d5f674 commit 78e3300

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

articles/azure-functions/functions-bindings-azure-sql.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,27 @@ Add the extension to your project by installing this [NuGet package](https://www
4949
dotnet add package Microsoft.Azure.Functions.Worker.Extensions.Sql --prerelease
5050
```
5151

52-
<!-- awaiting bundle support
5352
# [C# script](#tab/csharp-script)
5453

55-
Functions run as C# script, which is supported primarily for C# portal editing. To update existing binding extensions for C# script apps running in the portal without having to republish your function app, see [Update your extensions].
54+
Functions run as C# script, which is supported primarily for C# portal editing. The SQL bindings extension is part of a preview [extension bundle], which is specified in your host.json project file.
55+
56+
57+
You can add the preview extension bundle by adding or replacing the following code in your `host.json` file:
58+
59+
```json
60+
{
61+
"version": "2.0",
62+
"extensionBundle": {
63+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
64+
"version": "[4.*, 5.0.0)"
65+
}
66+
}
67+
```
68+
69+
<!-- To update existing binding extensions for C# script apps running in the portal without having to republish your function app, see [Update your extensions]. -->
70+
71+
<!-- You can install this version of the extension in your function app by registering the [extension bundle], version 3.x, or a later version. -->
5672

57-
You can install this version of the extension in your function app by registering the [extension bundle], version 3.x, or a later version.
58-
-->
5973

6074
---
6175

0 commit comments

Comments
 (0)