2 instantiations of DataTableMappingCollection
System.Data.Common (2)
System\Data\Common\DataAdapter.cs (2)
177mappings = new DataTableMappingCollection(); 236return new DataTableMappingCollection();
16 references to DataTableMappingCollection
netstandard (1)
netstandard.cs (1)
452[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.DataTableMappingCollection))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
24[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.DataTableMappingCollection))]
System.Data.Common (14)
System\Data\Common\AdapterUtil.Common.cs (4)
400return CollectionNullValue(parameter, typeof(DataTableMappingCollection), typeof(DataTableMapping)); 404return CollectionIndexString(typeof(DataTableMapping), ADP.DataSetTable, cacheTable, typeof(DataTableMappingCollection)); 420return CollectionIndexString(typeof(DataTableMapping), ADP.SourceTable, srcTable, typeof(DataTableMappingCollection)); 428return CollectionInvalidType(typeof(DataTableMappingCollection), typeof(DataTableMapping), value);
System\Data\Common\DataAdapter.cs (6)
28private DataTableMappingCollection? _tableMappings; 167public DataTableMappingCollection TableMappings 171DataTableMappingCollection? mappings = _tableMappings; 225DataTableMappingCollection parameters = TableMappings; 233protected virtual DataTableMappingCollection CreateTableMappings() 727return DataTableMappingCollection.GetTableMappingBySchemaAction(_tableMappings, sourceTableName, dataSetTableName, mappingAction);
System\Data\Common\DataTableMapping.cs (2)
16private DataTableMappingCollection? _parent; 70internal DataTableMappingCollection? Parent
System\Data\Common\DataTableMappingCollection.cs (1)
381public static DataTableMapping? GetTableMappingBySchemaAction(DataTableMappingCollection? tableMappings, string sourceTable, string dataSetTable, MissingMappingAction mappingAction)
System\Data\ProviderBase\SchemaMapping.cs (1)
128_tableMapping = DataTableMappingCollection.GetTableMappingBySchemaAction(null, sourceTableName, sourceTableName, mappingAction);