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