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 299Debug.Assert(_mappedLength == Math.Min(_readerDataValues!.Length, _mappedDataValues!.Length), "incorrect precomputed length"); 304_mappedDataValues[i] = _readerDataValues[i]; // from reader to dataset 364Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null == _mappedDataValues), "incorrect MappedValues"); 367Debug.Assert((null == _chapterMap) && (null == _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 371Debug.Assert((null == _chapterMap) && (null != _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 375Debug.Assert((null != _chapterMap) && (null == _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 379Debug.Assert((null != _chapterMap) && (null != _indexMap) && (null != _mappedDataValues), "incorrect MappedValues"); 383return _mappedDataValues!; 1256_mappedDataValues![chapterColumn.Ordinal] = chapterValue;