2 types derived from DataAdapter
System.Data.Common (2)
System\Data\Common\DataAdapter.cs (1)
797
internal sealed class LoadAdapter :
DataAdapter
System\Data\Common\DbDataAdapter.cs (1)
12
public abstract class DbDataAdapter :
DataAdapter
, IDbDataAdapter, ICloneable
12 references to DataAdapter
netstandard (1)
netstandard.cs (1)
448
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.
DataAdapter
))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
20
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.
DataAdapter
))]
System.Data.Common (10)
System\Data\Common\DataAdapter.cs (8)
46
protected DataAdapter(
DataAdapter
from) : base()
205
protected virtual
DataAdapter
CloneInternals()
207
DataAdapter
clone = (
DataAdapter
)Activator.CreateInstance(GetType())!;
212
private void CloneFrom(
DataAdapter
from)
336
tmp =
DataAdapter
.GetSourceTableName(srcTable!, schemaCount);
355
dataTables =
DataAdapter
.AddDataTableToArray(dataTables, mapping.DataTable);
668
tmp =
DataAdapter
.GetSourceTableName(srcTable!, schemaCount);
System\Data\ProviderBase\SchemaMapping.cs (2)
38
private readonly
DataAdapter
_adapter;
60
internal SchemaMapping(
DataAdapter
adapter, DataSet? dataset, DataTable? datatable, DataReaderContainer dataReader, bool keyInfo,