T
Tony Johansson
Hello!
Assume I create an untyped DataSet just by doing
DataSet ds = new DataSet();
Now I load an existing xml schema into this ds DataSet just by doing
ds.ReadXmlSchema(@"C:\DataSources\Northwind.xsd");
Now the ds DataSet is having a xml schema.
As the last action a load an xml file that have this xml schema by doing
ds.ReadXml(@"C:\DataSources\Northwind.xml");
My question is now the following is this dataset ds now a strongly typed
DataSet ?
What is the definition for a strongly types dataSet ?
//Tony
Assume I create an untyped DataSet just by doing
DataSet ds = new DataSet();
Now I load an existing xml schema into this ds DataSet just by doing
ds.ReadXmlSchema(@"C:\DataSources\Northwind.xsd");
Now the ds DataSet is having a xml schema.
As the last action a load an xml file that have this xml schema by doing
ds.ReadXml(@"C:\DataSources\Northwind.xml");
My question is now the following is this dataset ds now a strongly typed
DataSet ?
What is the definition for a strongly types dataSet ?
//Tony