当我使用带有 xsd 的模式时,我收到“列超过最大 -1 个字符”错误
<xs:element name="OfficeEmail"
type="ValidateEmail"
minOccurs ="0"/>
<xs:simpleType name="ValidateEmail">
<xs:restriction base ="StringMaxLen200">
<xs:pattern value="[a-zA-Z][a-zA-Z][a-zA-Z]"/>
</xs:restriction>
</xs:simpleType>
关于如何解决此错误的任何想法。
提前致谢。