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