我想選擇與n使用fetchXml的特定實體無關的帳戶。我試過如下: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所有acounts。但我收到的都是帳戶。過濾條件似乎只是被忽略...
我做錯了什麼?