如何将 SQL 临时表传递给 C# 存储过程
将临时表传递给 C# 存储过程 (SQL 2008) 的最佳方法是什么?我是否坚持将临时表名称作为文本传递并从 C# 运行选择?
我希望使用表值参数,但 C# 存储过程似乎不支持它们。
What's the best way to pass a temp table to a C# stored procedure (SQL 2008)? Am I stuck passing the temp table name as text and running a select from C#?
I was hoping to use Table Value Parameters, but they don't appear to be supported in C# sprocs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为 xml (也许是 nvarchar(max))将是你最好的选择,但我还没有尝试过。
As xml (perhaps as nvarchar(max)) would be your best bet, but I've not tried it.
您是对的,不支持 TABLE 类型参数映射 CLR 参数数据 。不过,您还有其他选择,例如。将状态作为 BLOB 传递 (SqlBytes)或 XML (SqlXml)。
You are correct, TABLE type parameters are not supported Mapping CLR Parameter Data. You have other options though, eg. pass state as a BLOB (SqlBytes) or as XML (SqlXml).