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