1

使用 WCF 和 DataContract 序列化程序,如何在查看 XSD 时将数据成员表示为 simpleType。例如:

[DataContract(Namespace="http://mydomain.xyz/example")]
public class MyType
{
 [DataMember(IsRequired=true)]
 public SomeBasicDataType basicAttribute { get; set; }

 [DataMember(IsRequired=true)]
 public SomeComplexType complexElement { get; set; }
}

基本上,我希望 someBasicDataType<xs:simpleType name="SomeBasicDataType ">在随附的 XSD 中,而不是<xs:complexType name="SomeBasicDataType">

4

1 回答 1

0

XSD 不允许简单类型包含架构中其他地方定义的元素或属性。

简单类型是通过从现有的简单类型(内置数据类型和其他派生的简单类型)派生来创建的

简单类型通常通过限制派生,但也可以通过列表或联合派生。

于 2013-09-04T10:42:45.257 回答