7 references to IsReadOnly
System.Data.Common (7)
System\Data\Common\DBCommandBuilder.cs (4)
851
if (row.
IsReadOnly
&& dataColumn.ReadOnly)
940
if (row.
IsReadOnly
&& dataColumn.ReadOnly)
1409
return (!row.IsAutoIncrement && !row.IsHidden && !row.IsExpression && !row.IsRowVersion && !row.
IsReadOnly
);
1415
return (!row.IsAutoIncrement && !row.IsRowVersion && !row.IsHidden && !row.
IsReadOnly
);
System\Data\ProviderBase\SchemaMapping.cs (3)
964
if (schemaRow.
IsReadOnly
)
968
if (!schemaRow.AllowDBNull && (!schemaRow.
IsReadOnly
|| schemaRow.IsKey))
989
dataColumn.ReadOnly = schemaRow.
IsReadOnly
;