4 writes to isNullable
System.Data (4)
fx\src\data\System\Data\SqlClient\TdsParser.cs (3)
3438rec.isNullable = true; 3446rec.isNullable = true; 4307col.isNullable = (TdsEnums.Nullable == (flags & TdsEnums.Nullable));
fx\src\data\System\Data\SqlClient\TdsParserHelperClasses.cs (1)
867this.isNullable = original.isNullable;
6 references to isNullable
System.Data (6)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (1)
1307if(!metadata.isNullable) {
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (2)
331colMetaData.isNullable, 620schemaRow[AllowDBNull] = col.isNullable;
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
4163col.tdsType = (col.isNullable ? col.metaType.NullableType : col.metaType.TDSType); 9312flags |= (UInt16)(md.isNullable ? (UInt16)TdsEnums.Nullable : (UInt16)0);
fx\src\data\System\Data\SqlClient\TdsParserHelperClasses.cs (1)
867this.isNullable = original.isNullable;