Typed Dataset from xsd-File

G

Guest

Hello,

is it possible to generate a typed dataset from a xsd-file?

Background: I want to write a export-function for some data stored in a
database. For this I got a standardized interface description as a xsd and
xml file. Is there a possibility to generate a typed dataset trought a
assistent or some other way.

Thanks.

Jacek Schikora
 
G

Guest

I have found a possibility.
With xsd.exe you can generate typed DataSets from xsd-files.

Thanks

Jacek Schikora
 
O

OZI

Your question is HOW

Xsd.exe performs the following operations:

XDR to XSD
Generates an XML schema from an XML-Data-Reduced schema file. XDR is an
early XML-based schema format.
XML to XSD
Generates an XML schema from an XML file.
XSD to DataSet
Generates common language runtime DataSet classes from an XSD schema file.
The generated classes provide a rich object model for regular XML data.
XSD to Classes
Generates runtime classes from an XSD schema file. The generated classes
can be used in conjunction with System.XML.Serialization.XMLSerializer to
read and write XML code that follows the schema.
Classes to XSD
Generates an XML schema from a type or types in a runtime assembly file.
The generated schema defines the XML format used by
System.XML.Serialization.XMLSerializer.
Xsd.exe only allows you to manipulate XML schemas that follow the XML Schema
Definition (XSD) language proposed by the World Wide Web Consortium (W3C).
For more information on the XML Schema Definition proposal or the XML
standard, see http://w3.org.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top