Hi!
When in the schema I have such element:
<xsd:attribute name="id" type="xsd:long" use="optional" default="1"/>
after reading this shema to DataSet column "id" have property DefaultValue = 1, and everything is fine.
But now I have this element:
<xsd:attribute name="typ" type="xsd:string" use="required" fixed="r"/>
When use is "required" in schema you must set value by "fixed" attribute, not by default ! But why attribute fixed is NOT read by ReadXmlSchema ???!!!?? And column "typ" have DefaultValue empty !!
How to read fixed attribute ? Help PLEASE !