2 writes to _readerDataValues
System.Data.Common (2)
System\Data\ProviderBase\SchemaMapping.cs (2)
160_readerDataValues = SetupSchemaWithoutKeyInfo(mappingAction, schemaAction, gettingData, parentChapterColumn, parentChapterValue); 164_readerDataValues = SetupSchemaWithKeyInfo(mappingAction, schemaAction, gettingData, parentChapterColumn, parentChapterValue);
21 references to _readerDataValues
System.Data.Common (21)
System\Data\ProviderBase\SchemaMapping.cs (21)
191return _readerDataValues; 198_dataReader.GetValues(_readerDataValues!); 259_mappedDataValues![k] = _readerDataValues![i]; // from reader to dataset 274_mappedDataValues![i] = _readerDataValues![i]; // from reader to dataset 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 310Debug.Assert(_readerDataValues != null); 319string? xml = _readerDataValues[i] as string; 320if ((null == xml) && (_readerDataValues[i] is System.Data.SqlTypes.SqlString x)) 328_readerDataValues[i] = _xmlMap[i] switch 345_readerDataValues[i] = new System.Data.SqlTypes.SqlXml(reader); 350_readerDataValues[i] = document; 365return _readerDataValues; // from reader to dataset 390for (int i = 0; i < _readerDataValues!.Length; ++i) 392_readerDataValues[i] = null; 402_dataReader.GetValues(_readerDataValues!); 443IDisposable? disposable = (_readerDataValues![i] as IDisposable); 446_readerDataValues[i] = null; 463object? readerValue = _readerDataValues![i]; 466_readerDataValues[i] = null;