C#を使用して「xsi:Enumeration」XSDを追加するにはどうすればよいですか?
これはベースファイルXSDです:
<xs:schema xmlns="urn:bookstore-schema"
targetNamespace="urn:bookstore-schema"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="TagType">
<xs:restriction base="xs:string">
<!--here to add new Enum elements -->
</xs:restriction>
</xs:simpleType>
そして私はc#を使用してこの結果を取得したいです:
<xs:schema xmlns="urn:bookstore-schema"
targetNamespace="urn:bookstore-schema"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="TagType">
<xs:restriction base="xs:string">
<xs:enumeration value="Actor" />
<xs:enumeration value="Productor" />
<xs:enumeration value="Director" />
<xs:enumeration value="Category" />
</xs:restriction>
</xs:simpleType>
ありがとう :)