从存储过程获取返回值

从存储过程获取返回值,第1张

从存储过程获取返回值

我找到了!我可以使用必须以这种方式使用的输出参数读取返回值:

// define a new output parametervar returnCode = new SqlParameter();returnCode.ParameterName = "@ReturnCode";returnCode.SqlDbType = SqlDbType.Int;returnCode.Direction = ParameterDirection.Output;// assign the return pre to the new output parameter and pass it to the spvar data = _context.Database.SqlQuery<Item>("exec @ReturnCode = spItemData @Code, @StatusLog OUT", returnCode, pre, outParam);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5559866.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存