我不确定我是否正确理解了您的问题,因为如果您按 AccountId 过滤帐户,您只会得到 0 或 1 个结果。所以,如果你得到一个结果,你就知道计数是 1。
无论如何,要获得计数,您可以使用适当的 FetchXml 聚合,如下所示:
https://xedev29.api.crm.dynamics.com/api/data/v8.2/accounts?fetchXml=
<fetch aggregate='true'>
<entity name='account'>
<attribute name='accountid' aggregate='count' alias='Count' />
</entity>
</fetch>
返回:
{
"@odata.context":"https://xedev29.api.crm.dynamics.com/api/data/v8.2/$metadata#accounts","value":[
{
"Count":337
}
]
}
并随时将您的过滤器添加到 FetchXml:
https://xedev29.api.crm.dynamics.com/api/data/v8.2/accounts?fetchXml=
<fetch aggregate='true'>
<entity name='account'>
<attribute name='accountid' aggregate='count' alias='Count' />
<filter type='and' >
<condition attribute='chr_accountstatusid' operator='eq' value='D1C4CD52-1E51-E711-8122-6C3BE5B3B698'/>
<condition attribute='statecode' operator='eq' value='0' />
</filter>
</entity>
</fetch>
当然,您会受到通常的 FetchXml 聚合限制(即计数最高为 50K 行)。尽管如果您需要,我已经找到了解决此问题的方法。
我还应该提到,不需要返回所有字段,所以我们可以使用 &$select=accountid。
您可以通过关联引用获取 @odata.count:result["@odata.count"]
这是一个完整的例子:
function count(){
var req = new XMLHttpRequest();
req.open("GET", Xrm.Page.context.getClientUrl() + "/api/data/v8.2/accounts?$select=accountid&$filter=accountid%20eq%20D1C4CD52-1E51-E711-8122-6C3BE5B3B698&$count=true", true);
req.setRequestHeader("OData-MaxVersion", "4.0");
req.setRequestHeader("OData-Version", "4.0");
req.setRequestHeader("Accept", "application/json");
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
req.setRequestHeader("Prefer", "odata.include-annotations=\"*\"");
req.onreadystatechange = function() {
if (this.readyState === 4) {
req.onreadystatechange = null;
if (this.status === 200) {
var result = JSON.parse(this.response);
console.log(result["@odata.count"]);
} else {
Xrm.Utility.alertDialog(this.statusText);
}
}
};
req.send();
}
此外,我应该提到,如果您正在使用 WebAPI 进行大量工作,那么Jason Lattimer 的 CRMRESTBuilder非常方便。
您可能还想查看David Yack 的 WebAPI 助手。