I am creating a DataSet (call it Foo) in the DataSet Designer.
It has a DataTable named Bar. It doesn't have an underlying database table; stuff gets filled in in an application-specific manner. So far so good.
The code generator creates classes Foo, Bar, and BarRow. And within the Foo class there's a private member of type Bar called tableBar, also generated.
With me so far?
I want to add another DataTable that's exactly like tableBar, but will contain semantically different information. It won't do to reuse tableBar, because some parts of my application will need both sets of data. But I want the new table to be of class Bar also, because several methods in my application code need to be able to interpret both "old" and "new" tables.
In other words, I'm trying to get the DataSet Designer to do this:
public class Foo: DataSet
{
public class Bar
{
// ... stuff ...
}
private Bar tableBar;
private Bar tableBaz; // <--- this is the new table! Note no separate class Baz.
}
So I'm wondering how to use the DataSet Designer, or how to modify the underlying .XSD file, to support two DataTable objects, within the DataSet, that are of the same DataTable inherited class.
Thanks for your help, everyone.
DataSetcan contain multipleDataTablesof the same type. Of course. But you wouldn't define it as separate table but initialize it, load it and then add it to theDataSetinstance manually. I think you're mixing classes and instances here. – Tim Schmelter Jan 17 at 21:13