8 references to IsKey
System.Data (8)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (3)
695
if ((null != row) && (row.
IsKey
|| row.IsUnique) && !row.IsLong && !row.IsRowVersion && row.IsHidden) {
1287
return (row.
IsKey
|| row.IsUnique) && !row.IsLong && !row.IsRowVersion;
1290
return (((row.
IsKey
|| row.IsUnique) && !_hasPartialPrimaryKey) || row.IsRowVersion) && !row.IsLong;
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (5)
724
if (schemaRow.
IsKey
) { // MDAC 90822
759
if (schemaRow.
IsKey
) {
809
if (!schemaRow.AllowDBNull && (!schemaRow.IsReadOnly || schemaRow.
IsKey
)) { // MDAC 71060, 72252
813
if (schemaRow.IsUnique && !schemaRow.
IsKey
&& !fieldType.IsArray) {
853
if (addPrimaryKeys && schemaRow.
IsKey
) { // MDAC 67033