Compartir a través de


SqlClientFactory.CreateBatchCommand Método

Definición

Devuelve una instancia de DbBatchCommand fuertemente tipada.

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

Devoluciones

Nueva instancia fuertemente tipada de DbBatchCommand .

Ejemplos

El fragmento de código siguiente devuelve una instancia fuertemente tipada DbBatchCommand :

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

Se aplica a