25 writes to AllowDBNull
System.Data (22)
fx\src\data\System\Data\DataTable.cs (3)
438dc.AllowDBNull = info.GetBoolean(String.Format(formatProvider, "DataTable.DataColumn_{0}.AllowDBNull", i)); 1614key.ColumnsReference[i].AllowDBNull = false; 4347key.AllowDBNull = false;
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (7)
562dataColumn.AllowDBNull = false; 770dataColumn.AllowDBNull = false; 796dataColumn.AllowDBNull = false; 810dataColumn.AllowDBNull = false; 819dataColumn.AllowDBNull = false; 825dataColumn.AllowDBNull = schemaRow.AllowDBNull; 895chapterColumn.AllowDBNull = false;
fx\src\data\System\Data\XDRSchema.cs (1)
422column.AllowDBNull = (minOccurs == 0) || bNullable;
fx\src\data\System\Data\XMLSchema.cs (11)
1221key[i].AllowDBNull = false; 1754column.AllowDBNull = isNillable; 1760column.AllowDBNull = false; 1790column.AllowDBNull = true; 1853column.AllowDBNull = isNillable; 1859column.AllowDBNull = false; 1882column.AllowDBNull = true; 1999column.AllowDBNull = !(attrib.Use == XmlSchemaUse.Required); 2005column.AllowDBNull = true; 2014column.AllowDBNull = GetBooleanAttribute(attr, Keywords.MSD_ALLOWDBNULL, true) ; 2158column.AllowDBNull = this.FromInference ||(elem.MinOccurs == 0 ) || elem.IsNillable;
System.Web.Entity (3)
System\Data\WebControls\EntityDataSourceViewSchema.cs (3)
34column.AllowDBNull = property.Column.IsNullable; 109column.AllowDBNull = true; 114column.AllowDBNull = !propertyType.IsValueType;
17 references to AllowDBNull
System.Data (17)
fx\src\data\System\Data\CodeGen\datacache.cs (3)
638if (!column.AllowDBNull) { 811if(col.AllowDBNull) { 896if (col.AllowDBNull) {
fx\src\data\System\Data\DataColumn.cs (1)
1421if (!AllowDBNull) {
fx\src\data\System\Data\DataSet.cs (1)
619if (!column.AllowDBNull) {
fx\src\data\System\Data\DataTable.cs (3)
355info.AddValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.AllowDBNull", i), Columns[i].AllowDBNull); 1241if (!column.AllowDBNull) { 3157if (c.AllowDBNull) {
fx\src\data\System\Data\DataTableReader.cs (1)
688dr[AllowDBNull] = dc.AllowDBNull;
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (1)
865if (isPrimary && dataColumn.AllowDBNull) { // MDAC 72241
fx\src\data\System\Data\XmlDataLoader.cs (3)
432if (c.AllowDBNull) { 784if (c.AllowDBNull && c.ColumnMapping != MappingType.Hidden && !c.AutoIncrement) { 1034if (c.AllowDBNull && c.ColumnMapping != MappingType.Hidden && !c.AutoIncrement) {
fx\src\data\System\Data\xmlsaver.cs (4)
1230if (!col.AllowDBNull) 1246if (col.ColumnMapping == MappingType.Attribute && !col.AllowDBNull ) { 1288minOccurs = (col.AllowDBNull) ? 0 : 1; 1602if (colTxt.AllowDBNull)