如何使用gt ge le和Fetchxml查找介于字母之间的帐户名(dynamics 365)

时间:2019-07-17 13:39:32

标签: crm microsoft-dynamics dynamics-365 fetchxml

我需要将Fetchxml查询分解为较小的部分。我需要在两个字母之间找到帐户名称,直到找到所有可能的有效帐户为止。

例如:帐户名以“ a”开头,而姓氏以“ i”开头。

round 1: 'a' to 'i' = 437 found
round 2: 'j' to 'q' = 376 found
round 3: 'r' to 'z' = 328 found
round 4: '0' to '9' = 4 found 
round 5: '!' to '~' = 1 found
Total needed:   1175 
found so far: - 1146 
              =   29 missing account names

我将此查询过滤器与上面的搜索值一起使用以遍历所有帐户:

<filter type="and" > 
 <filter type="and" > 
  <condition attribute="name" operator="le" value="i" /> 
 </filter>

 <filter type="and" > 
  <condition attribute="name" operator="gt" value="a" /> 
  <condition attribute="name" operator="lt" value="i" /> 
 </filter> 

 <filter type="and" > 
  <condition attribute="name" operator="ge" value="a" /> 
  </filter> 
</filter>

查看完所有结果后,帐户名称中看不到任何不寻常的字符。

找到丢失的29个帐户名的另一个条件是什么...有什么主意吗?我敢肯定这很简单。

0 个答案:

没有答案