这是从 Dapper 示例中截取的代码:
var p = new DynamicParameters();
p.Add("@a", 11);
p.Add("@b", dbType: DbType.Int32, direction: ParameterDirection.Output);
p.Add("@c", dbType: DbType.Int32, direction: ParameterDirection.ReturnValue);
cnn.Execute("spMagicProc", p, commandType: commandType.StoredProcedure);
int b = p.Get("@b");
int c = p.Get("@c");
任何人:在提供的示例中的上述代码中,我收到一个错误,“无法解析 .Execute”——指的是cnn.Execute
. 我查看了连接对象,没有执行的方法。Dapper 显然运作良好,那我做错了什么?