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