ADO.NET:指定的强制转换无效

时间:2012-07-09 20:28:23

标签: sql asp.net-mvc sql-server-2008 stored-procedures casting

当我执行这样的存储过程时,我得到一个指定的强制转换无效错误:

return (int)comm.ExecuteScalar();

当我在SQL Server中执行它时,它返回1,所以我知道我的proc正在运行。

我的演员有什么问题?

更新:

    public static int IsPresent(string userName, int inTime)
    {
        SqlConnection connObj = new SqlConnection();
        connObj.ConnectionString = Util.SQLConct();
        connObj.Open();

        SqlCommand comm = new SqlCommand("usp_IsUserLocked", connObj);

        comm.CommandType = CommandType.StoredProcedure;

        comm.Parameters.Add(new SqlParameter("@Username", userName));
        comm.Parameters.Add(new SqlParameter("@InTime", inTime));

        return (int)comm.ExecuteScalar();

    }

提前致谢

1 个答案:

答案 0 :(得分:5)

您的方法可能会返回double或int64或任何其他无法隐式转换为(int)的类型。使用Convert.ToInt32确保您的方法返回正确的类型。

using System;

...
return Convert.ToInt32(comm.ExecuteScalar());