File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ echoOnly.Execute( x = (* must pass int value here *) 1)
3333There is no way to pass NULL as value for parameter `@x` although the query knows how to handle it.
3434
3535To resolve the issue specify `AllParametersOptional = true` as static parameter to type provider.
36- It makes all parameters of type `option<_>` with default value `None`.
36+ It makes all parameters of type `option<_>`.
3737
3838<div class="well well-small" style="margin:0px 70px 0px 20px;">
3939
@@ -53,10 +53,7 @@ let echoOr42 =
5353// Pass parameter value. Specifying Some constructor is mandatrory.
5454echoOr42.Execute( Some 1 )
5555
56- // Pass NULL by omitting parameter
57- echoOr42.Execute()
58-
59- //Pass NULL explicitly
56+ // Pass NULL
6057echoOr42.Execute( x = None)
6158
6259(**
You can’t perform that action at this time.
0 commit comments