我想使用 fetchXml 选择与特定实体不相关的帐户。我尝试的是以下内容:
<fetch mapping="logical" count="50" version="1.0">
<entity name="account">
<attribute name="name" />
<order attribute="name" />
<link-entity name="xy_accounthierarchynode" from="xy_accountid"
to="accountid" link-type="outer">
<filter>
<condition attribute="xy_accounthierarchynodeid"
operator="null" />
</filter>
</link-entity>
</entity>
</fetch>
此查询的预期结果是所有没有相关 xy_accounthierarchynode 的帐户。但我收到的都是账目。过滤条件似乎被简单地忽略了......
我做错了什么?