4 references to IsAutoIncrement
System.Data.Common (4)
System\Data\Common\DBCommandBuilder.cs (2)
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 (2)
945
if (schemaRow.
IsAutoIncrement
&& DataColumn.IsAutoIncrementType(fieldType))
987
dataColumn.AutoIncrement = schemaRow.
IsAutoIncrement
;