无法通过KeyValuePair asp.net捕获scope_identity

本文关键字:捕获 scope identity net asp KeyValuePair | 更新日期: 2023-09-27 18:15:11

i try:

List<KeyValuePair<string, object>> ParamCollOutput= new List<KeyValuePair<string, object>>();
ParamCollOutput.Add(new KeyValuePair<string, object>("@MenuID", SqlDbType.Int));
ParamCollOutput.Direction = ParameterDirection.Output;

但是我在CCD_ 1中得到了一个错误。Does not contain a defn for....我知道这不是一种有效的声明方式,但我应该如何获得值并在int a.SP中分配它不是问题。谢谢你的帮助。

无法通过KeyValuePair asp.net捕获scope_identity

List<T>不实现Direction

我想你想这么做。。。

SqlParameterCollection coll = new SqlParameterCollection();
coll.Add(new SqlParameter("@MenuId", 123) { Direction = ParameterDirection.Output });