7 references to IsReadOnly
System.Data (7)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (4)
757
if (row.
IsReadOnly
&& dataColumn.ReadOnly)
841
if (row.
IsReadOnly
&& dataColumn.ReadOnly)
1257
return (!row.IsAutoIncrement && !row.IsHidden && !row.IsExpression && !row.IsRowVersion && !row.
IsReadOnly
);
1263
return (!row.IsAutoIncrement && !row.IsRowVersion && !row.IsHidden && !row.
IsReadOnly
);
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (3)
806
if (schemaRow.
IsReadOnly
) {
809
if (!schemaRow.AllowDBNull && (!schemaRow.
IsReadOnly
|| schemaRow.IsKey)) { // MDAC 71060, 72252
826
dataColumn.ReadOnly = schemaRow.
IsReadOnly
;