使用CommandType时出错

时间:2016-12-01 20:59:50

标签: c# sqlcommand

我一直在VS2010中运行此程序,但我刚开始使用VS2015而且现在出现此错误

  

当前上下文中不存在'CommandType'

下面是我的完全synatx,为什么这段代码在VS2015中不起作用

public static void RunStoredProc()
{
    using (SqlConnection connection = new SqlConnection(ConnectionString))
    {
        connection.Open();
        SqlCommand cmd = new SqlCommand("RunUSP", connection);
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.CommandTimeout = 600;
        cmd.ExecuteNonQuery();
    }
}

修改
见下图,当我悬停时,没有灯泡出现? {{0}}

0 个答案:

没有答案