17 references to DbBatchCommand
System.Data.Common (17)
System\Data\Common\DbBatch.cs (2)
64public DbBatchCommand CreateBatchCommand() => CreateDbBatchCommand(); 66protected abstract DbBatchCommand CreateDbBatchCommand();
System\Data\Common\DbBatchCommandCollection.cs (11)
9public abstract class DbBatchCommandCollection : IList<DbBatchCommand> 11public abstract IEnumerator<DbBatchCommand> GetEnumerator(); 15public abstract void Add(DbBatchCommand item); 19public abstract bool Contains(DbBatchCommand item); 21public abstract void CopyTo(DbBatchCommand[] array, int arrayIndex); 23public abstract bool Remove(DbBatchCommand item); 29public abstract int IndexOf(DbBatchCommand item); 31public abstract void Insert(int index, DbBatchCommand item); 35public DbBatchCommand this[int index] 41protected abstract DbBatchCommand GetBatchCommand(int index); 43protected abstract void SetBatchCommand(int index, DbBatchCommand batchCommand);
System\Data\Common\DbDataSource.cs (1)
529protected override DbBatchCommand CreateDbBatchCommand() => throw new NotImplementedException();
System\Data\Common\DbException.cs (2)
49public DbBatchCommand? BatchCommand => DbBatchCommand; 51protected virtual DbBatchCommand? DbBatchCommand => null;
System\Data\Common\DbProviderFactory.cs (1)
54public virtual DbBatchCommand CreateBatchCommand() => throw new NotSupportedException();