これは、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
ます。接続オブジェクトを確認しましたが、Executeのメソッドがありません。Dapperは明らかにうまく機能するので、何が間違っているのでしょうか。