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)
140
if (null !=
_tableMapping
) {
142
_dataTable =
_tableMapping
.GetDataTableBySchemaAction(_dataSet, schemaAction);
411
string chapterTableName =
_tableMapping
.SourceTable + _fieldNames[i]; // MDAC 70908
492
bool alwaysCreateColumns = ((_dataTable.Columns.Count == 0) && ((
_tableMapping
.ColumnMappings == null) || (
_tableMapping
.ColumnMappings.Count == 0)) && (mappingAction == MissingMappingAction.Passthrough));
530
dataColumn =
_tableMapping
.GetDataColumn(_fieldNames[i], fieldType, _dataTable, mappingAction, schemaAction);
590
chapterColumn =
_tableMapping
.GetDataColumn(
_tableMapping
.SourceTable, fieldType, _dataTable, mappingAction, schemaAction);
713
dataColumn =
_tableMapping
.GetDataColumn(_fieldNames[sortedIndex], fieldType, _dataTable, mappingAction, schemaAction);
889
chapterColumn =
_tableMapping
.GetDataColumn(
_tableMapping
.SourceTable, fieldType, _dataTable, mappingAction, schemaAction);