im trying to get a "typisierte" DataSet like this: (from MSDN)
what do you call for "typisiert"? (My MSDN is in german, so i dont know the english word)
i tried to look in MSDN but didnt find an example code for making "typisierte" DataSet. Should i extend the DataSet like this?
or how should i do it?
thx in advance.
C#:
// This accesses the CustomerID column in the first row of
// the Customers table.
string s;
s = dsCustomersOrders1.Customers[0].CustomerID;
what do you call for "typisiert"? (My MSDN is in german, so i dont know the english word)
i tried to look in MSDN but didnt find an example code for making "typisierte" DataSet. Should i extend the DataSet like this?
C#:
public class DataSetExt : DataSet
{
//... with all set and get for each specific tables and column names
}
or how should i do it?
thx in advance.