本文介绍了使用LINQ在csharp中使用out参数调用storedProcedure的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨
我有一个存储过程,它会rweturn一个char变量
在使用LINQ概念在csharp中调用SP时出现错误.
Hi
I have a stored procedure which rweturns a char variable
I am getting error in calling the SP in csharp with LINQ concept.
sp:sp_Sample<br />
我宣布
I declared
System.Nullable<char> outx=null;<br />
</char>
然后我在代码背后将sp称为
And I called sp in codebehind as,
sp_Sample(ref outx)<br />
但这对我不起作用.
谁能告诉我使用LINQ调用SP返回char参数的正确方法.
预先感谢.
But it is not working for me.
Can anyone tell me the correct way of calling SP returning a char parameter using LINQ.
Thanks in advance.
推荐答案
这篇关于使用LINQ在csharp中使用out参数调用storedProcedure的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!