5 references to IsUnique
System.Data (5)
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 (2)
813if (schemaRow.IsUnique && !schemaRow.IsKey && !fieldType.IsArray) { 827dataColumn.Unique = schemaRow.IsUnique;