> I can easily create an xsd from an xml file in Visual Studio 2005. But
> I want a typed DataSet, so is there an option to create that typed
> DataSet from the xsd or the xml file? I need many such typed DataSets
> so I don't want to create them from scratch.
The xsd.exe tool, part of the .NET framework SDK, can create typed
datasets from xsd schemas using e.g.
xsd.exe schema.xsd /dataset
see <URL:http://msdn2.microsoft.com/en-us/library/x6c1kb0s(VS.80).aspx>

Signature
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
DC - 27 Aug 2007 17:53 GMT
> > I can easily create an xsd from an xml file in Visual Studio 2005. But
> > I want a typed DataSet, so is there an option to create that typed
[quoted text clipped - 10 lines]
> Martin Honnen --- MVP XML
> http://JavaScript.FAQTs.com/
Thank you Martin, that works exactly as I was hoping.
Regards
DC