如何从 ado.net 调用 TSQL 函数
我在 SQL Server 中定义了一个函数(需要一个字符串和一个整数),如何使用 ADO.NET 调用它?
(如果它与调用存储过程100%相同,请直接这么说,因为有很多关于调用存储过程的示例)
I have a function defined in SQL Server (that takes a string and a int) how do I call it with ADO.NET?
(If it is 100% same as calling a stored proc, please just say so, as there a lot of examples on calling stored procs about)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一的区别是您必须为返回值添加一个特殊参数
请参阅:MySqlCommand 调用函数< /a>
The only difference is that you must have a special paramter added for the return value
See: MySqlCommand call function