-
Is it possible to use Table valued parameters (https://msdn.microsoft.com/en-us/library/bb675163%28v=vs.110%29.aspx) with SqlBuilder? If so, how? |
Beta Was this translation helpful? Give feedback.
Answered by
maxtoroq
Feb 5, 2015
Replies: 2 comments
-
You can use any object as parameter value, but if the parameter needs special configuration you'd need to create the command, make your changes then execute it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
maxtoroq
-
That's the route I ended up taking - thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use any object as parameter value, but if the parameter needs special configuration you'd need to create the command, make your changes then execute it.