Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the possibilities to generate .net C# 4.0 (Visual Studio 2010) class (entities) from xsd file.

share|improve this question
7  
possibilities are endless! – Shiv Kumar Mar 7 '11 at 9:02

3 Answers

up vote 58 down vote accepted

simple enough; just run (at the vs command prompt)

xsd your.xsd /classes

(which will create your.cs). Note, however, that most of the intrinsic options here haven't changed much since 2.0

For the options, use xsd /? or see MSDN; for example /enableDataBinding can be useful.

share|improve this answer
Awesome, thanks! – jinsungy Nov 23 '11 at 18:08
3  
I know this is old but you have just made my life a lot easier! Thankyou! – JMK Jul 9 '12 at 9:32

xsd.exe as mentioned by Marc Gravell. The fastest way to get up and running IMO.

Or if you need more flexibility/options :

xsd2code VS add-in (Codeplex)

share|improve this answer
+1 for Xsd2Code - awesome tool! :) – MattDavey Mar 7 '11 at 11:06
1  
I couldn't get xsd2code to work for me at all. xsd.exe is more robust, but struggles with schemas that have "circular" groups. – Jeff Nov 4 '11 at 16:44

Here is a pretty good free tool... xsd2code

I found it pretty helpful.

share|improve this answer
+1 using it more than 2 years - it's really helpful – Koka Chernov Nov 12 '12 at 10:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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