有人可以告诉我以下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 但是没有用。
答案 0 :(得分:2)
不幸的是,无法构建OData查询,其中包括展开相关实体并对其进行过滤,但如果您使用Dynamics CRM 2016,则新的WebApi可以使用清晰的FetchXml进行数据查询。
重新检查以下文章: