2 writes to dbNullBits
System.Data (2)
fx\src\data\System\Data\Common\DataStorage.cs (2)
244this.dbNullBits = new BitArray(capacity); 496dbNullBits = nullbits;
11 references to dbNullBits
System.Data (11)
fx\src\data\System\Data\Common\DataStorage.cs (11)
178if (!this.dbNullBits.Get(recordNos[i])) 185bool recordNo1Null = this.dbNullBits.Get(recordNo1); 186bool recordNo2Null = this.dbNullBits.Get(recordNo2); 208this.dbNullBits.Set(dstRecordNo, this.dbNullBits.Get(srcRecordNo)); 216if (this.dbNullBits.Get(recordNo)) { 228return !this.dbNullBits.Get(recordNo); 232return this.dbNullBits.Get(recordNo); 239this.dbNullBits.Set(recordNo, flag); 243if (null == this.dbNullBits) { 247this.dbNullBits.Length = capacity;