SqlBatchCommandCollection.Contains 方法

定义

重载

Contains(SqlBatchCommand)

确定 SqlBatchCommand 是否位于 SqlBatchCommandCollection 中。

Contains(DbBatchCommand)

指示 集合中是否 DbBatchCommand 包含 。

Contains(SqlBatchCommand)

确定 SqlBatchCommand 是否位于 SqlBatchCommandCollection 中。

public:
 virtual bool Contains(Microsoft::Data::SqlClient::SqlBatchCommand ^ item);
public bool Contains (Microsoft.Data.SqlClient.SqlBatchCommand item);
override this.Contains : Microsoft.Data.SqlClient.SqlBatchCommand -> bool
Public Function Contains (item As SqlBatchCommand) As Boolean

参数

返回

实现

适用于

Contains(DbBatchCommand)

指示 集合中是否 DbBatchCommand 包含 。

public:
 override bool Contains(System::Data::Common::DbBatchCommand ^ item);
public override bool Contains (System.Data.Common.DbBatchCommand item);
override this.Contains : System.Data.Common.DbBatchCommand -> bool
Public Overrides Function Contains (item As DbBatchCommand) As Boolean

参数

item
DbBatchCommand

要在 ICollection<T> 中定位的对象。

返回

如果 DbBatchCommand 位于集合中,则为 true;否则为 false

适用于