|
13 | 13 | - [Empty Parameter Value](#empty-parameter-value) |
14 | 14 | - [Null Parameter Value](#null-parameter-value) |
15 | 15 | - [Stored Procedure](#stored-procedure) |
16 | | - - [IAsyncEnumerable](#iasyncenumerable) |
17 | 16 | - [Output Binding](#output-binding) |
18 | 17 | - [function.json Properties for Output Bindings](#functionjson-properties-for-output-bindings) |
19 | 18 | - [Setup for Output Bindings](#setup-for-output-bindings) |
20 | 19 | - [Samples for Output Bindings](#samples-for-output-bindings) |
21 | | - - [ICollector\<T\>/IAsyncCollector\<T\>](#icollectortiasynccollectort) |
22 | 20 | - [Array](#array) |
23 | 21 | - [Single Row](#single-row) |
24 | 22 | - [Trigger Binding](#trigger-binding) |
@@ -110,23 +108,19 @@ Note: This tutorial requires that a SQL database is setup as shown in [Create a |
110 | 108 |
|
111 | 109 | #### Query String |
112 | 110 |
|
113 | | -_TODO_ |
| 111 | +See the [GetProducts](https://github.com/Azure/azure-functions-sql-extension/blob/main/samples/samples-js/GetProducts) sample |
114 | 112 |
|
115 | 113 | #### Empty Parameter Value |
116 | 114 |
|
117 | | -_TODO_ |
| 115 | +See the [GetProductsNameEmpty](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-js/GetProductsNameEmpty) sample |
118 | 116 |
|
119 | 117 | #### Null Parameter Value |
120 | 118 |
|
121 | | -_TODO_ |
| 119 | +See the [GetProductsNameNull](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-js/GetProductsNameNull) sample |
122 | 120 |
|
123 | 121 | #### Stored Procedure |
124 | 122 |
|
125 | | -_TODO_ |
126 | | - |
127 | | -#### IAsyncEnumerable |
128 | | - |
129 | | -_TODO_ |
| 123 | +See the [GetProductsStoredProcedure](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-js/GetProductsStoredProcedure) sample |
130 | 124 |
|
131 | 125 | ## Output Binding |
132 | 126 |
|
@@ -200,17 +194,13 @@ Note: This tutorial requires that a SQL database is setup as shown in [Create a |
200 | 194 |
|
201 | 195 | ### Samples for Output Bindings |
202 | 196 |
|
203 | | -#### ICollector<T>/IAsyncCollector<T> |
204 | | - |
205 | | -_TODO_ |
206 | | - |
207 | 197 | #### Array |
208 | 198 |
|
209 | | -_TODO_ |
| 199 | +See the [AddProductsArray](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-js/AddProductsArray) sample |
210 | 200 |
|
211 | 201 | #### Single Row |
212 | 202 |
|
213 | | -_TODO_ |
| 203 | +See the [AddProduct](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-js/AddProduct) sample |
214 | 204 |
|
215 | 205 | ## Trigger Binding |
216 | 206 |
|
|
0 commit comments