2 instantiations of DataTableMappingCollection
System.Data (2)
fx\src\data\System\Data\Common\DataAdapter.cs (2)
247mappings = new DataTableMappingCollection(); 311return new DataTableMappingCollection();
14 references to DataTableMappingCollection
System.Data (14)
fx\src\data\System\Data\Common\AdapterUtil.cs (4)
1061return CollectionNullValue(parameter, typeof(DataTableMappingCollection), typeof(DataTableMapping)); 1064return CollectionIndexString(typeof(DataTableMapping), ADP.DataSetTable, cacheTable, typeof(DataTableMappingCollection)); 1076return CollectionIndexString(typeof(DataTableMapping), ADP.SourceTable, srcTable, typeof(DataTableMappingCollection)); 1082return CollectionInvalidType(typeof(DataTableMappingCollection), typeof(DataTableMapping), value);
fx\src\data\System\Data\Common\DataAdapter.cs (6)
34private DataTableMappingCollection _tableMappings; 240public DataTableMappingCollection TableMappings { // V1.0.3300 243DataTableMappingCollection mappings = _tableMappings; 302DataTableMappingCollection parameters = this.TableMappings; 309virtual protected DataTableMappingCollection CreateTableMappings() { // V1.0.3300 713return DataTableMappingCollection.GetTableMappingBySchemaAction(_tableMappings, sourceTableName, dataSetTableName, mappingAction);
fx\src\data\System\Data\Common\DataTableMapping.cs (2)
23private DataTableMappingCollection parent; 80internal DataTableMappingCollection Parent {
fx\src\data\System\Data\Common\DataTableMappingCollection.cs (1)
370static public DataTableMapping GetTableMappingBySchemaAction(DataTableMappingCollection tableMappings, string sourceTable, string dataSetTable, MissingMappingAction mappingAction) {
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (1)
124_tableMapping = DataTableMappingCollection.GetTableMappingBySchemaAction(null, sourceTableName, sourceTableName, mappingAction);