Hello,
is there a way to define the primary key of a field in the XSD file?
Like in the following XSD snippet:
But without calling
the field will not be a primary key.
Regards,
Hanno
is there a way to define the primary key of a field in the XSD file?
Like in the following XSD snippet:
Code:
<xsd:key name="MemberKey">
<xsd:selector xpath="Member" />
<xsd:field xpath="@Nick" />
</xsd:key>
Code:
dataSource.getField("Nick").setPrimaryKey(true);
Regards,
Hanno
Comment