Compartilhar via


SqlClientFactory.CreateBatch Método

Definição

Retorna uma instância DbBatch fortemente tipada.

public:
 override System::Data::Common::DbBatch ^ CreateBatch();
public override System.Data.Common.DbBatch CreateBatch ();
override this.CreateBatch : unit -> System.Data.Common.DbBatch
Public Overrides Function CreateBatch () As DbBatch

Retornos

Uma nova instância fortemente tipada de DbBatch .

Exemplos

O fragmento de código a seguir retorna uma instância fortemente tipada DbBatch :

SqlClientFactory newFactory = SqlClientFactory.Instance;
DbParameter cmd = newFactory.CreateBatch();

Aplica-se a