We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dfb257 commit 6677b0aCopy full SHA for 6677b0a
1 file changed
src/Rezoom.SQL.Provider/TypeGeneration.fs
@@ -38,6 +38,9 @@ let private toFragmentExpr (fragment : CommandFragment) =
38
| LocalName n -> <@@ LocalName (%%Quotations.Expr.Value(n)) @@>
39
| CommandText t -> <@@ CommandText (%%Quotations.Expr.Value(t)) @@>
40
| Parameter i -> <@@ Parameter (%%Quotations.Expr.Value(i)) @@>
41
+ | InlineParameter (dbType, o) ->
42
+ // won't work with complex types so watch out
43
+ <@@ InlineParameter (%%Quotations.Expr.Value(dbType), %%Quotations.Expr.Value(o)) @@>
44
| Whitespace -> <@@ Whitespace @@>
45
| LineBreak -> <@@ LineBreak @@>
46
| Indent -> <@@ Indent @@>
0 commit comments