我正在尝试使用 c# 中的所有 sql 函数。我已经将参数作为@fileid 和useid 添加到函数中。但是得到一个错误。我无法弄清楚我的代码中的错误..
string query = "exec fn_sh_HitInfo(@fileid,@UserID)";
SqlCommand cmd = new SqlCommand();
cmd.CommandText = query;
cmd.CommandType = CommandType.Text;
cmd.Parameters.Add("@fileid", SqlDbType.BigInt).Value=fid;
cmd.Parameters.Add("@UserID", SqlDbType.BigInt).Value =UserID;
string taglist = string.Empty;
try
{
taglist = DBAction.ExecuteQuery(cmd, FilteringControl.ProjectID).ToString();
}