1
SqlParameterCollection
有一個Add(SqlParameter)
方法和AddRange(SqlParameter[])
方法。每個都有幾個重載。我可以將Parametercollection添加到另一個Parametercollection嗎?
具體來說,SqlCommand.Parameters
是隻讀的,如果我有SqlParameterCollection
我不能只分配它,所以我想將它添加到現有的集合。
現在有一個在我的代碼迴路:
SqlCommand cmd = new SqlCommand();
foreach (SqlParameter param in collection)
{
cmd.Parameters.Add(param);
}
有一個簡單的內置的方式添加SqlParameterCollection
到另一個?