【发布时间】:2015-09-29 17:18:15
【问题描述】:
我需要在 MS Dynamics CRM 2015 中创建一个视图,将几个 AND 条件添加到一系列 OR 条件中。以下不起作用,似乎不允许其他任何事情。
<fetch version="1.0" output-format="xml-platform" mapping="logical" >
<entity name="new_crn" >
<attribute name="new_name" />
<filter type="or" >
<condition value="14" operator="eq" attribute="new_totalprod" />
<condition value="14" operator="lt" attribute="new_totalprod" />
<condition operator="between" attribute="new_totalprod" >
<value>53</value>
<value>93</value>
</condition>
...
<filter type="and">
<condition operator="eq" attribute="date_sent" >
</filter>
</filter>
</entity>
</fetch>
【问题讨论】:
标签: fetchxml