2 writes to _mappedDataValues
System.Data.Common (2)
System\Data\ProviderBase\SchemaMapping.cs (2)
1231
_mappedDataValues
= new object[mappingCount];
1250
_mappedDataValues
= new object[columnCollection.Count];
14 references to _mappedDataValues
System.Data.Common (14)
System\Data\ProviderBase\SchemaMapping.cs (14)
259
_mappedDataValues
![k] = _readerDataValues![i]; // from reader to dataset
262
_mappedDataValues
[k] = null; // InvalidCast from DataReader to AutoIncrement DataColumn
274
_mappedDataValues
![i] = _readerDataValues![i]; // from reader to dataset
277
_mappedDataValues
[i] = null; // InvalidCast from DataReader to AutoIncrement DataColumn
292
_mappedDataValues
![k] = _readerDataValues![i]; // from reader to dataset
299
Debug.Assert(_mappedLength == Math.Min(_readerDataValues!.Length,
_mappedDataValues
!.Length), "incorrect precomputed length");
304
_mappedDataValues
[i] = _readerDataValues[i]; // from reader to dataset
364
Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null ==
_mappedDataValues
), "incorrect MappedValues");
367
Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
371
Debug.Assert((null == _chapterMap) && (null != _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
375
Debug.Assert((null != _chapterMap) && (null == _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
379
Debug.Assert((null != _chapterMap) && (null != _indexMap) && (null !=
_mappedDataValues
), "incorrect MappedValues");
383
return
_mappedDataValues
!;
1256
_mappedDataValues
![chapterColumn.Ordinal] = chapterValue;