1 type derived from DbBatch
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
355private sealed class DbBatchWrapper : DbBatch
7 references to DbBatch
System.Data.Common (7)
System\Data\Common\DbConnection.cs (2)
133public DbBatch CreateBatch() => CreateDbBatch(); 135protected virtual DbBatch CreateDbBatch() => throw new NotSupportedException();
System\Data\Common\DbDataSource.cs (4)
57protected virtual DbBatch CreateDbBatch() 72public DbBatch CreateBatch() 357private readonly DbBatch _wrappedBatch; 360internal DbBatchWrapper(DbBatch wrappedBatch)
System\Data\Common\DbProviderFactory.cs (1)
52public virtual DbBatch CreateBatch() => throw new NotSupportedException();