We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8302ee commit 423931eCopy full SHA for 423931e
1 file changed
docs/content/faq.fsx
@@ -33,7 +33,7 @@ echoOnly.Execute( x = (* must pass int value here *) 1)
33
There is no way to pass NULL as value for parameter `@x` although the query knows how to handle it.
34
35
To resolve the issue specify `AllParametersOptional = true` as static parameter to type provider.
36
-It makes all parameters of type `option<_>` with default value `None`.
+It makes all parameters of type `option<_>`.
37
38
<div class="well well-small" style="margin:0px 70px 0px 20px;">
39
@@ -53,10 +53,7 @@ let echoOr42 =
53
// Pass parameter value. Specifying Some constructor is mandatrory.
54
echoOr42.Execute( Some 1)
55
56
-// Pass NULL by omitting parameter
57
-echoOr42.Execute()
58
-
59
-//Pass NULL explicitly
+// Pass NULL
60
echoOr42.Execute( x = None)
61
62
(**
0 commit comments