Generating XML file using XSD file

前端 未结 3 1508
臣服心动
臣服心动 2020-11-28 02:53

How do you generate an XML file from an XSD file?

3条回答
  •  Happy的楠姐
    2020-11-28 03:05

    For "Create classes using xsd tool: xsd.exe /classes Test.xsd" firstly come to windows Start then write "Developer.." after that you will see Developer Command Prompt for Vs2015(your version). run this command into the command.

    In addititon if your xsd file is big, it takes time to define all elements. In my situation I am trying implement database column in each elemnen for getting information for each customer of my compnay. (var data = new MyClass { Field1 = "test1", Field2 = "test2" };)

提交回复
热议问题