2 instantiations of DataTableMappingCollection
System.Data.Common (2)
System\Data\Common\DataAdapter.cs (2)
177
mappings = new
DataTableMappingCollection
();
236
return new
DataTableMappingCollection
();
16 references to DataTableMappingCollection
netstandard (1)
netstandard.cs (1)
452
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.
DataTableMappingCollection
))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
24
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.
DataTableMappingCollection
))]
System.Data.Common (14)
System\Data\Common\AdapterUtil.Common.cs (4)
400
return CollectionNullValue(parameter, typeof(
DataTableMappingCollection
), typeof(DataTableMapping));
404
return CollectionIndexString(typeof(DataTableMapping), ADP.DataSetTable, cacheTable, typeof(
DataTableMappingCollection
));
420
return CollectionIndexString(typeof(DataTableMapping), ADP.SourceTable, srcTable, typeof(
DataTableMappingCollection
));
428
return CollectionInvalidType(typeof(
DataTableMappingCollection
), typeof(DataTableMapping), value);
System\Data\Common\DataAdapter.cs (6)
28
private
DataTableMappingCollection
? _tableMappings;
167
public
DataTableMappingCollection
TableMappings
171
DataTableMappingCollection
? mappings = _tableMappings;
225
DataTableMappingCollection
parameters = TableMappings;
233
protected virtual
DataTableMappingCollection
CreateTableMappings()
727
return
DataTableMappingCollection
.GetTableMappingBySchemaAction(_tableMappings, sourceTableName, dataSetTableName, mappingAction);
System\Data\Common\DataTableMapping.cs (2)
16
private
DataTableMappingCollection
? _parent;
70
internal
DataTableMappingCollection
? Parent
System\Data\Common\DataTableMappingCollection.cs (1)
381
public static DataTableMapping? GetTableMappingBySchemaAction(
DataTableMappingCollection
? tableMappings, string sourceTable, string dataSetTable, MissingMappingAction mappingAction)
System\Data\ProviderBase\SchemaMapping.cs (1)
128
_tableMapping =
DataTableMappingCollection
.GetTableMappingBySchemaAction(null, sourceTableName, sourceTableName, mappingAction);