2 writes to _mappedDataValues
System.Data (2)
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (2)
1054_mappedDataValues = new object[mappingCount]; 1070_mappedDataValues = new object[columnCollection.Count];
14 references to _mappedDataValues
System.Data (14)
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (14)
223_mappedDataValues[k] = _readerDataValues[i]; // from reader to dataset 225_mappedDataValues[k] = null; // InvalidCast from DataReader to AutoIncrement DataColumn 235_mappedDataValues[i] = _readerDataValues[i]; // from reader to dataset 237_mappedDataValues[i] = null; // InvalidCast from DataReader to AutoIncrement DataColumn 249_mappedDataValues[k] = _readerDataValues[i]; // from reader to dataset 255Debug.Assert(_mappedLength == Math.Min(_readerDataValues.Length, _mappedDataValues.Length), "incorrect precomputed length"); 259_mappedDataValues[i] = _readerDataValues[i]; // from reader to dataset 310Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null == _mappedDataValues), "incorrect MappedValues"); 313Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 317Debug.Assert((null == _chapterMap) && (null != _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 321Debug.Assert((null != _chapterMap) && (null == _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 325Debug.Assert((null != _chapterMap) && (null != _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 329return _mappedDataValues; 1075_mappedDataValues[chapterColumn.Ordinal] = chapterValue;