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
255
Debug.Assert(_mappedLength == Math.Min(_readerDataValues.Length,
_mappedDataValues
.Length), "incorrect precomputed length");
259
_mappedDataValues
[i] = _readerDataValues[i]; // from reader to dataset
310
Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null ==
_mappedDataValues
), "incorrect MappedValues");
313
Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
317
Debug.Assert((null == _chapterMap) && (null != _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
321
Debug.Assert((null != _chapterMap) && (null == _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
325
Debug.Assert((null != _chapterMap) && (null != _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
329
return
_mappedDataValues
;
1075
_mappedDataValues
[chapterColumn.Ordinal] = chapterValue;