So I am not a .cs developer, but I've got some .cs code that I have to debug. The code is using a couple of DataRelations to manage the relationships among data that we then display on an .aspx page using a DataBind function.
The design of the data is like this: We have a table with a unique key, a non-unique item ID, and then a series of headers that can be associated with the ID; let's call them H1, H2, and H3, all optional. There are a range of options for H2 depending on which H1 is selected, and a range of options for H3 depending on which H2 is selected.
So for instance, allowable values for one item might be
- H1a, H2aa, H3aaa
- H1a, H2aa, H3aab
- H1a, H2aa;
- H1a;
- H1a, H2ab, H3abd
... and so on.
The problem is that these are then selected from the database on Distinct(H1) and the H1 & H2 columns put into a DataRelation. Then they are selected for Distinct(H2) and the H2 & H3 columns related through a DataRelation. However, H2 can be null, and is not unique! And so, the page is breaking with a:
System.ArgumentException: These columns don't currently have unique values error.
This happens even on pages where H2 is never null, so the uniqueness is a definite issue.
Code is as follows; the error is thrown on the DataRelation rel2 line:
DataRelation rel = new DataRelation("L1L2", ds.Tables["H1Table"].Columns["H1"], ds.Tables["H2Table"].Columns["H1"]);
ds.Relations.Add(rel);
ds.Relations[0].Nested = true;
DataRelation rel2 = new DataRelation("L2L3", ds.Tables["H2Table"].Columns["H2"], ds.Tables["H3Table"].Columns["H2"]);
ds.Relations.Add(rel2);
ds.Relations[1].Nested = true;
R1.DataSource = ds.Tables["Headings"];
R1.DataBind();
That's the problem. However, I'm not sure what the best way of relating this data and getting it displayed to the page is!