8 references to AllowDBNull
System.Data (8)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (4)
111
if (schemaRows[i].
AllowDBNull
) {
202
if ((null != schemaRows[i]) && schemaRows[i].
AllowDBNull
) {
765
if ( !row.
AllowDBNull
&& (null == currentValue || Convert.IsDBNull(currentValue)) )
921
if (!row.
AllowDBNull
) {
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (4)
795
if (!schemaRow.
AllowDBNull
) { // MDAC 71060
809
if (!schemaRow.
AllowDBNull
&& (!schemaRow.IsReadOnly || schemaRow.IsKey)) { // MDAC 71060, 72252
818
if (!schemaRow.
AllowDBNull
) { // MDAC 71060
825
dataColumn.AllowDBNull = schemaRow.
AllowDBNull
;