9 references to ColumnMappings
System.Data (9)
fx\src\data\System\Data\Common\DataTableMapping.cs (7)
40ColumnMappings.AddRange(columnMappings); 46get { return ColumnMappings; } 112if ((null != _columnMappings) && (0 < ColumnMappings.Count)) { 113DataColumnMappingCollection parameters = clone.ColumnMappings; 114foreach(ICloneable parameter in ColumnMappings) { 210DataColumnMapping[] columnMappings = new DataColumnMapping[mapping.ColumnMappings.Count]; 211mapping.ColumnMappings.CopyTo(columnMappings, 0);
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (2)
492bool alwaysCreateColumns = ((_dataTable.Columns.Count == 0) && ((_tableMapping.ColumnMappings == null) || (_tableMapping.ColumnMappings.Count == 0)) && (mappingAction == MissingMappingAction.Passthrough));