SqlClientFactory.CreateBatchCommand Metodo

Definizione

Restituisce un'istanza di DbBatchCommand fortemente tipizzata.

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

Restituisce

Nuova istanza fortemente tipizzata di DbBatchCommand .

Esempio

Il frammento di codice seguente restituisce un'istanza fortemente tipizzata DbBatchCommand :

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

Si applica a