다음을 통해 공유


SqlClientFactory.CreateBatchCommand 메서드

정의

강력한 형식의 DbBatchCommand 인스턴스를 반환합니다.

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

반환

의 강력한 형식의 새 instance DbBatchCommand .

예제

다음 코드 조각은 강력한 형식 DbBatchCommand 의 instance 반환합니다.

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

적용 대상