6 writes to _tableMapping
System.Data.Common (6)
System\Data\ProviderBase\SchemaMapping.cs (6)
101_tableMapping = _adapter.GetTableMappingBySchemaAction(sourceTableName, sourceTableName, mappingAction); 108_tableMapping = _adapter.TableMappings[index]; 112_tableMapping = mappingAction switch 128_tableMapping = DataTableMappingCollection.GetTableMappingBySchemaAction(null, sourceTableName, sourceTableName, mappingAction); 135_tableMapping = _adapter.TableMappings[index]; 139_tableMapping = new DataTableMapping(_dataTable.TableName, _dataTable.TableName);
13 references to _tableMapping
System.Data.Common (13)
System\Data\ProviderBase\SchemaMapping.cs (13)
148if (null != _tableMapping) 152_dataTable = _tableMapping.GetDataTableBySchemaAction(_dataSet!, schemaAction); 488string chapterTableName = _tableMapping!.SourceTable + _fieldNames![i]; 568Debug.Assert(_tableMapping != null); 583bool alwaysCreateColumns = ((_dataTable.Columns.Count == 0) && ((_tableMapping.ColumnMappings == null) || (_tableMapping.ColumnMappings.Count == 0)) && (mappingAction == MissingMappingAction.Passthrough)); 630dataColumn = _tableMapping.GetDataColumn(_fieldNames[i], fieldType, _dataTable, mappingAction, schemaAction); 704chapterColumn = _tableMapping.GetDataColumn(_tableMapping.SourceTable, fieldType, _dataTable, mappingAction, schemaAction); 765Debug.Assert(_tableMapping != null); 851dataColumn = _tableMapping.GetDataColumn(_fieldNames[sortedIndex], fieldType, _dataTable, mappingAction, schemaAction); 1050chapterColumn = _tableMapping.GetDataColumn(_tableMapping.SourceTable, fieldType, _dataTable, mappingAction, schemaAction);