我尝试使用top =“1”并在链接实体元素中降序,我仍然可以获得多个连接的记录。
<fetch version="1.0" mapping="logical" >
<entity name="x" >
<attribute name="xid" />
<link-entity alias="d" top="1" name="t" from="xid" to="xid" link-type="outer">
...
<order attribute="xdate" descending="true" />
</link-entity>
</entity>
</fetch>
答案 0 :(得分:0)
您无法限制返回的链接实体数量。您可以做的是将链接实体d作为实体,将实体x作为链接实体,以便您可以按预期使用top
。