nested element in XFlat
anyone know XFlat well? How do you specify the nested element with attributes in XFlat schema, the .xfl?
ie when I have:
<Employees xml:ns=""blahblah.com" xml:schemaLocation="blahblah.com blah.xsd">
<Employee ID="123456789">
<Name>
<LastName>Doe</LastName>
<FirstName>John</FirstName>
</Name>
<Salary Mode="FullTime">100,000</Salary>
</Employee>
</Employees>
well, as specified in XFlat specs, FieldDef can only be contained RecordDef... and RecordDef is not self-recursive, neither is FieldDef... so doh!
anyone got some insights?

