我想通过XSD描述这个类结构,但我找不到任何解决方案:
public class A {
string property { get; }
B[] property2 { get; }//occurs 0 to unbound
}
public class B {
string property { get; }
}
答案 0 :(得分:1)
如果你正在使用C#,请看一下这个问题/答案:
Programatically serialize class to xsd
但序列化到XSD时的问题是DataMember
属性对XSD有严重限制(请参阅http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/e95ba78b-9932-4d8a-91ac-6b40967d0d8b)。
所以,也许您可以通过序列化生成XSD并执行一些自定义修改,主要用于数据约束(长度,范围,最小/最大......)
[编辑] 或者,如果您想自己动手,请查看此http://www.w3schools.com/schema/
答案 1 :(得分:1)
以下是我的想法,以下XML架构将帮助您解决问题。
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/Class" xmlns:tns="http://www.example.org/Class" elementFormDefault="qualified">
<element name="A" type="tns:A"></element>
<simpleType name="property">
<restriction base="string"></restriction>
</simpleType>
<complexType name="B">
<sequence>
<element name="property" type="tns:property"></element>
</sequence>
</complexType>
<complexType name="A">
<sequence>
<element name="property" type="tns:property"></element>
<element name="B" type="tns:B" maxOccurs="unbounded" minOccurs="0"></element>
</sequence>
</complexType>