7 writes to _tableMapping
System.Data (7)
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (7)
97_tableMapping = _adapter.GetTableMappingBySchemaAction(sourceTableName, sourceTableName, mappingAction); 102_tableMapping = _adapter.TableMappings[index]; 107_tableMapping = new DataTableMapping(_dataTable.TableName, _dataTable.TableName); 110_tableMapping = null; 124_tableMapping = DataTableMappingCollection.GetTableMappingBySchemaAction(null, sourceTableName, sourceTableName, mappingAction); 129_tableMapping = _adapter.TableMappings[index]; 132_tableMapping = new DataTableMapping(_dataTable.TableName, _dataTable.TableName);
11 references to _tableMapping
System.Data (11)
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (11)
140if (null != _tableMapping) { 142_dataTable = _tableMapping.GetDataTableBySchemaAction(_dataSet, schemaAction); 411string chapterTableName = _tableMapping.SourceTable + _fieldNames[i]; // MDAC 70908 492bool alwaysCreateColumns = ((_dataTable.Columns.Count == 0) && ((_tableMapping.ColumnMappings == null) || (_tableMapping.ColumnMappings.Count == 0)) && (mappingAction == MissingMappingAction.Passthrough)); 530dataColumn = _tableMapping.GetDataColumn(_fieldNames[i], fieldType, _dataTable, mappingAction, schemaAction); 590chapterColumn = _tableMapping.GetDataColumn(_tableMapping.SourceTable, fieldType, _dataTable, mappingAction, schemaAction); 713dataColumn = _tableMapping.GetDataColumn(_fieldNames[sortedIndex], fieldType, _dataTable, mappingAction, schemaAction); 889chapterColumn = _tableMapping.GetDataColumn(_tableMapping.SourceTable, fieldType, _dataTable, mappingAction, schemaAction);