SqlBatchCommandCollection.Add 方法

定义

重载

Add(SqlBatchCommand)

SqlBatchCommand将 添加到 的SqlBatchCommandCollection末尾。

Add(DbBatchCommand)

将指定的 DbBatchCommand 对象添加到 ICollection<T> 中。

Add(SqlBatchCommand)

SqlBatchCommand将 添加到 的SqlBatchCommandCollection末尾。

public:
 virtual void Add(Microsoft::Data::SqlClient::SqlBatchCommand ^ item);
public void Add (Microsoft.Data.SqlClient.SqlBatchCommand item);
override this.Add : Microsoft.Data.SqlClient.SqlBatchCommand -> unit
Public Sub Add (item As SqlBatchCommand)

参数

实现

适用于

Add(DbBatchCommand)

将指定的 DbBatchCommand 对象添加到 ICollection<T> 中。

public:
 override void Add(System::Data::Common::DbBatchCommand ^ item);
public override void Add (System.Data.Common.DbBatchCommand item);
override this.Add : System.Data.Common.DbBatchCommand -> unit
Public Overrides Sub Add (item As DbBatchCommand)

参数

item
DbBatchCommand

要添加到 ICollection<T> 的对象。

适用于