SqlCommand command = new SqlCommand(commandText, connection);
command.Parameters.Add("@ID", SqlDbType.Int);
据我所知,我们使用" =" for property get或set value.Parameters as property,为什么它可以跟随一个add函数?
答案 0 :(得分:3)
因为SqlCommand.Parameters
属性返回collection
Add
Parameter
Add
。 Parameter
方法使用您传递给Add
的参数创建Parameter
对象,然后将该对象添加到基础ui-view
集合。