【发布时间】:2018-09-03 10:38:59
【问题描述】:
谁能告诉我以下 fetchXml 查询的 oData 等效查询?
<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">
<entity name="customeraddress">
<attribute name="name"/>
<link-entity name="contact" alias="ab" to="parentid" from="contactid">
<filter type="and">
<condition attribute="statecode" value="0" operator="eq"/>
</filter>
</link-entity>
</entity>
</fetch>
我查了很多并尝试了这里提到的内容:Filter on Expanded entities in OData 但不起作用。
【问题讨论】: