I've read that facets, restrictions in the xsd, are not supported by WCF. But is there a way (custom code or something) to get it in the generated XSD.
I need my service to output something like this:
<xs:simpleType name="Amount_type">
<xs:restriction base="xs:decimal">
<xs:pattern value="-?\d{1,12}\.\d{2}"/>
</xs:restriction>
</xs:simpleType>
I also need the minExclusive and maxEclusive facets in the output.
Can it be done?
Thanks,
Roland