Hi, I am trying to convert fetchxml query to OData, how can I filter out related entity through OData query
<fetch>
<entity name="invoice" >
<attribute name="name" />
<attribute name="totalamount" />
<attribute name="invoicenumber" />
<link-entity name="account" from="accountid" to="customerid" >
<filter>
<condition attribute="customerid" operator="eq" value="4794394" />
</filter>
</link-entity>
</entity>
</fetch>
*This post is locked for comments
I have the same question (0)