vote up 0 vote down star

How do I generate, based on a xsd and c#, an xml containing only the mandatory elements. I would prefer to use xlinq but I am also open to alternatives.

flag

1 Answer

vote up 0 vote down

Is this a single fiexed xsd? Or is the xsd determined at runtime? With a fixed xsd, you could map it to an object model and use XmlSerializer:

xsd foo.xsd /classes

(at the command line; generates foo.cs with classes for entities etc)

Then build your object-model, and use XmlSerializer to serialize it. It might work - but isn't a suitable option for working with xsd on the fly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.