I need to add two DataViews together to have one Dataview that can then be bound to a Repeater.
I am plugging into someone else's API so I can't change the way the data is retreived at the SQL Level.
So essentially I want to do this:
DataView dView1 = getActiveModules();
DataView dView2 = getInactiveModules();
ModuleView = dView1 + dView2;
rptModules.DataSource = ModuleView.Tables[0];
rptModules.DataBind();
The two schemas for the views are identical just retrieving active and inactive modules.
Any ideas?
Thanks.