Multiple XSD schema files to C# classes

前端 未结 2 1568
滥情空心
滥情空心 2021-02-01 02:03

What is the best way to generate C# classes from multiple XSD schema files?

Some XSD schema files may have dependency to the other, I am trying to avoid duplicated C# cl

2条回答
  •  暖寄归人
    2021-02-01 02:29

    I for one found the examples in the MSDN doc a bit lacking. Here's an example parameters file for the issue codemeit described:

    
    
        FirstSchema.xsd
        AnotherSchema.xsd
        LastSchema.xsd
    
    
    

提交回复
热议问题