P: n/a
|
Is there a way to create an index (non-unique) constraint on a
DataTable column?
Here is some code sample I would like to run, but the constraint can
not be unique.
Dim IDDataColumn As DataColumn
IDDataColumn = ds.Tables(1).Columns("MyNonUniqueID")
ds.Tables(1).Constraints.Add("IndexID", IDDataColumn, False) | |
Share this question for a faster answer!