5 references to IsUnique
System.Data.Common (5)
System\Data\Common\DBCommandBuilder.cs (3)
784if ((null != row) && (row.IsKey || row.IsUnique) && !row.IsLong && !row.IsRowVersion && row.IsHidden) 1445return (row.IsKey || row.IsUnique) && !row.IsLong && !row.IsRowVersion; 1448return (((row.IsKey || row.IsUnique) && !_hasPartialPrimaryKey) || row.IsRowVersion) && !row.IsLong;
System\Data\ProviderBase\SchemaMapping.cs (2)
973if (schemaRow.IsUnique && !schemaRow.IsKey && !fieldType.IsArray) 990dataColumn.Unique = schemaRow.IsUnique;