You can easily generate the C# classes or entities from the xsd file using the VS Command Prompt.
How to generate C# classes from xsd file ?
Just launch the VS command prompt from the Windows 10 Start menu and run the following command
xsd <Path of your.xsd file> /classes
Eg :
xsd “C:/test.xsd” /classes
This would create the .cs files in the same folder as specified as source.
Leave a Reply