日期:2014-05-17  浏览次数:20427 次

ref int? returnvalue 这个的参数怎样给值
本帖最后由 DiaoNianYu 于 2013-02-15 15:34:46 编辑
存储过程有三个参数,string a,string b,int 返回值
用 linq 调用这个存储过程时,总提示 第三个参数不正常,
 lqDB.CMS_Admin_login(temusername,tempass,ref int);
"ref int "处不知道怎么写?
怎样调用好呢?

非常感谢!

------解决方案--------------------
string temusername = "...";
string tempass = "...";
int result = 0;
lqDB.CMS_Admin_login(temusername, tempass, ref result);