c#代码片段:                    // 添加一个商品
                    command.CommandText = sqlProduct;
                    command.ExecuteNonQuery();                    // 想得到最后添加的记录的标识列(主键)
                    string sqlGetPId = "select IDENT_CURRENT('product')";
                    command.CommandText = sqlGetPId;
                    productId = command.ExecuteNonQuery();productId 就是得不到
select @@Identity from Product 也试过了, 也得不到
应该是写法或什么出了问题