nixau
nixau

Reputation: 1095

XML binding solution in .NET

Are there any proper xml binding(mapping) solutions (OXM) in .net? What I need is to generate model classes from arbitrary xml. As for now I can't find anything like JaXB 1/2, JiBX, Castor XML, XMLBeans in Java.

Upvotes: 0

Views: 683

Answers (5)

vtd-xml-author
vtd-xml-author

Reputation: 3377

There is also an schemaless approach to data binding, here is a link to an introductory article

http://www.codeproject.com/KB/XML/schemaless_binding.aspx

Upvotes: 0

vtd-xml-author
vtd-xml-author

Reputation: 3377

You may want to investigate schemaless data binding approach (below is the URL)

http://www.codeproject.com/KB/XML/schemaless_binding.aspx

Upvotes: 0

P.K
P.K

Reputation: 19137

I am not sure what exactly you are looking for...but you can take a look at xsd.exe. It can do some pretty neat stuff.

Upvotes: 1

nixau
nixau

Reputation: 1095

I've found here a nice overview of xml binding solutions

XMLObjects library seems suitable

Upvotes: 0

Revenge
Revenge

Reputation: 51

Look at MyGeneration. I think this might be just the thing you need. We used it for some ORM in previous projects but it's pretty versatile.

Upvotes: 0

Related Questions