2 types derived from DataAdapter
System.Data.Common (2)
System\Data\Common\DataAdapter.cs (1)
797internal sealed class LoadAdapter : DataAdapter
System\Data\Common\DbDataAdapter.cs (1)
12public 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)
46protected DataAdapter(DataAdapter from) : base() 205protected virtual DataAdapter CloneInternals() 207DataAdapter clone = (DataAdapter)Activator.CreateInstance(GetType())!; 212private void CloneFrom(DataAdapter from) 336tmp = DataAdapter.GetSourceTableName(srcTable!, schemaCount); 355dataTables = DataAdapter.AddDataTableToArray(dataTables, mapping.DataTable); 668tmp = DataAdapter.GetSourceTableName(srcTable!, schemaCount);
System\Data\ProviderBase\SchemaMapping.cs (2)
38private readonly DataAdapter _adapter; 60internal SchemaMapping(DataAdapter adapter, DataSet? dataset, DataTable? datatable, DataReaderContainer dataReader, bool keyInfo,