4 writes to Unique
System.Data (3)
fx\src\data\System\Data\DataTable.cs (1)
4348key.Unique = true;
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (2)
816dataColumn.Unique = true; 827dataColumn.Unique = schemaRow.IsUnique;
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceViewSchema.cs (1)
118column.Unique = false;
7 references to Unique
System.Data (7)
fx\src\data\System\Data\CodeGen\datacache.cs (1)
646if (column.Unique) {
fx\src\data\System\Data\DataColumn.cs (4)
751if (AutoIncrement || Unique) { 1041if (Unique && this._ordinal != -1 && ordinal == -1) { 1056if (Unique) { 1131if (Unique && this.table != null) {
fx\src\data\System\Data\DataTableReader.cs (1)
690dr[IsUnique] = dc.Unique;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1118if (!hasKey && dt.Columns[i].Unique) {