返回odata查询的计数

时间:2017-07-11 15:39:35

标签: odata dynamics-crm crm dynamics-crm-2016 dynamics-crm-webapi

如果我有查询,例如:

http://myCRMOrg/api/data/v8.1/accounts?$filter=_chr_accountstatusid_value%20eq%2079A024B5-3D7C-E211-8B29-00155DC86B6F%20and%20accountid%20eq%20e929baaf-483b-e711-9425-00155dc0d345&$count=true

请注意我指定$count=true

它将返回:

{
  "@odata.context":"http://myCRMORG/api/data/v8.1/$metadata#accounts","@odata.count":1,"value":[
    {
      "@odata.etag":"W/\"1812635\"","
      //100 fields and lots of data
    }
  ]
}

我们如何重新构建此查询以返回 1

2 个答案:

答案 0 :(得分:3)

我不确定我是否正确理解您的问题,因为如果按帐户ID过滤帐户,您只会获得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行计数最多)。虽然如果你需要,我已经找到了解决方法。

我也应该提到没有必要返回所有字段,因此我们可以使用&amp; $ 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's CRMRESTBuilder非常方便。

您可能还想查看David Yack's WebAPI helper

答案 1 :(得分:1)

我有同样的问题。我做的是我在过滤之前添加了计数并且它有效。例如:

req.open("GET", Xrm.Page.context.getClientUrl() + "/api/data/v8.2/accounts/$count/?$select=accountid&$filter=accountid%20eq%20D1C4CD52-1E51-E711-8122-6C3BE5B3B698&", true);