足够简单;只需运行(在 vs 命令提示符下)
xsd your.xsd /classes
(这将创建 your.cs
)。但是请注意,这里的大多数内在选项自 2.0 以来并没有太大变化
对于选项,使用 xsd /?
或 see MSDN;例如 /enableDataBinding
可能很有用。
Marc Gravell 提到的 xsd.exe。启动和运行 IMO 的最快方法。
或者,如果您需要更多的灵活性/选项:
xsd2code VS 插件(Codeplex)
我在这里向您展示使用 Vs2017 和 Vs2019 的最简单方法使用 Visual Studio 打开您的 xsd 并生成一个示例 xml 文件,如 url 建议的那样。
在如下设计视图中打开 xsd 后,单击 xml 模式资源管理器
2. 在“XML Schema Explorer”中一直向下滚动以找到根/数据节点。右键单击根/数据节点,它将显示“生成示例 XML”。如果未显示,则表示您不在数据元素节点上,但您在任何数据定义节点上。
https://i.stack.imgur.com/oVDIV.png
将生成的 Xml 复制到剪贴板中 在您的解决方案中创建一个新的空类并删除类定义。只有命名空间应该保留当您的鼠标指针聚焦在您的类中时,选择 EDIT-> Paste Special-> Paste Xml as Classes
当您有循环引用时,xsd.exe 不能正常工作(即,一个类型可以直接或间接拥有它自己类型的元素)。
当存在循环引用时,我使用 Xsd2Code。 Xsd2Code 可以很好地处理循环引用并在 VS IDE 中工作,这是一个很大的优势。它还具有许多您可以使用的功能,例如生成序列化/反序列化代码。如果您正在生成序列化,请确保打开 GenerateXMLAttributes(否则,如果未在所有元素上定义,您将获得排序异常)。
两者都不适用于选择功能。你最终会得到对象的列表/集合,而不是你想要的类型。如果可能,我建议避免在您的 xsd 中进行选择,因为这不能很好地序列化/反序列化为强类型类。但是,如果您不关心这一点,那么这不是问题。
xsd2code 中的任何功能都反序列化为 System.Xml.XmlElement,我觉得这非常方便,但如果您想要强类型对象,这可能是个问题。当允许自定义配置数据时,我经常使用 any,因此 XmlElement 可以方便地传递给在其他地方自定义定义的另一个 XML 反序列化器。
对于一个快速而懒惰的解决方案,(并且根本不使用 VS)尝试这些在线转换器:
xsd 到 xml 转换器在这里
xmltocsharp 转换器在这里
XSD => XML => C# 类
示例 XSD:
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="shiporder">
<xs:complexType>
<xs:sequence>
<xs:element name="orderperson" type="xs:string"/>
<xs:element name="shipto">
<xs:complexType>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="address" type="xs:string"/>
<xs:element name="city" type="xs:string"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="item" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="title" type="xs:string"/>
<xs:element name="note" type="xs:string" minOccurs="0"/>
<xs:element name="quantity" type="xs:positiveInteger"/>
<xs:element name="price" type="xs:decimal"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="orderid" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>
转换为 XML:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid Technologies Online Tools 1.0 (https://www.liquid-technologies.com) -->
<shiporder xsi:noNamespaceSchemaLocation="schema.xsd" orderid="string" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<orderperson>string</orderperson>
<shipto>
<name>string</name>
<address>string</address>
<city>string</city>
<country>string</country>
</shipto>
<item>
<title>string</title>
<note>string</note>
<quantity>3229484693</quantity>
<price>-6894.465094196054907</price>
</item>
<item>
<title>string</title>
<note>string</note>
<quantity>2181272155</quantity>
<price>-2645.585094196054907</price>
</item>
<item>
<title>string</title>
<note>string</note>
<quantity>2485046602</quantity>
<price>4023.034905803945093</price>
</item>
<item>
<title>string</title>
<note>string</note>
<quantity>1342091380</quantity>
<price>-810.825094196054907</price>
</item>
</shiporder>
转换为此类结构:
/*
Licensed under the Apache License, Version 2.0
http://www.apache.org/licenses/LICENSE-2.0
*/
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Xml2CSharp
{
[XmlRoot(ElementName="shipto")]
public class Shipto {
[XmlElement(ElementName="name")]
public string Name { get; set; }
[XmlElement(ElementName="address")]
public string Address { get; set; }
[XmlElement(ElementName="city")]
public string City { get; set; }
[XmlElement(ElementName="country")]
public string Country { get; set; }
}
[XmlRoot(ElementName="item")]
public class Item {
[XmlElement(ElementName="title")]
public string Title { get; set; }
[XmlElement(ElementName="note")]
public string Note { get; set; }
[XmlElement(ElementName="quantity")]
public string Quantity { get; set; }
[XmlElement(ElementName="price")]
public string Price { get; set; }
}
[XmlRoot(ElementName="shiporder")]
public class Shiporder {
[XmlElement(ElementName="orderperson")]
public string Orderperson { get; set; }
[XmlElement(ElementName="shipto")]
public Shipto Shipto { get; set; }
[XmlElement(ElementName="item")]
public List<Item> Item { get; set; }
[XmlAttribute(AttributeName="noNamespaceSchemaLocation", Namespace="http://www.w3.org/2001/XMLSchema-instance")]
public string NoNamespaceSchemaLocation { get; set; }
[XmlAttribute(AttributeName="orderid")]
public string Orderid { get; set; }
[XmlAttribute(AttributeName="xsi", Namespace="http://www.w3.org/2000/xmlns/")]
public string Xsi { get; set; }
}
}
注意力!考虑到这只是Get-You-Started,结果显然需要改进!
我在批处理脚本中使用 XSD
直接从 XML
生成 .xsd
文件和类:
set XmlFilename=Your__Xml__Here
set WorkingFolder=Your__Xml__Path_Here
set XmlExtension=.xml
set XsdExtension=.xsd
set XSD="C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1\Tools\xsd.exe"
set XmlFilePath=%WorkingFolder%%XmlFilename%%XmlExtension%
set XsdFilePath=%WorkingFolder%%XmlFilename%%XsdExtension%
%XSD% %XmlFilePath% /out:%WorkingFolder%
%XSD% %XsdFilePath% /c /out:%WorkingFolder%
在我的情况下有效的命令是:
xsd /c your.xsd
我在 Windows 命令提示符中使用了 xsd.exe
。
但是,由于我的 xml 引用了几个在线 xml(在我的情况下 http://www.w3.org/1999/xlink.xsd
引用了 http://www.w3.org/2001/xml.xsd
),我还必须下载这些示意图,将它们放在与我的 xsd 相同的目录中,然后在命令中列出这些文件:
"C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\xsd.exe" /classes /language:CS your.xsd xlink.xsd xml.xsd
xsd.exe
大相径庭,因为它不喜欢循环引用,但我最终成功了。
Marc Gravells 的回答对我来说是正确的,但我的 xsd 扩展名为 .xml。当我使用 xsd 程序时,它给出了:
- The table (Amt) cannot be the child table to itself in nested relations.
根据这个KB325695,我将扩展名从 .xml 重命名为 .xsd,它运行良好。
除了 WSDL,我还有 xsd 文件。以上在我的情况下不起作用给出了错误。它的工作方式如下
wsdl /l:C# /out:D:\FileName.cs D:\NameApi\wsdl_1_1\RESAdapterService.wsdl
D:\CXTypes.xsd D:\CTypes.xsd
D:\Preferences.xsd
xsd schema1.xsd schema2.xsd schema3.xsd /c