我正在尝试在标准Web API 2.2 ApiController
中使用OData过滤和分页功能。为此,我必须重写请求URL以符合OData v4标准。我的控制器看起来像这样:
public GridPage Get([FromUri] GridSearchCriteria criteria)
{
Request.RequestUri = ... // convert querystring to OData v4
var context = new ODataQueryContext(MyEdmModel.Instance, typeof(Delivery), null);
ODataQueryOptions<Delivery> options = new ODataQueryOptions<Delivery>(context, Request);
IQueryable<Delivery> deliveries = ... // use EF to load deliveries from DB
var result = (IQueryable<Delivery>)options.ApplyTo(deliveries); // BTW, I wonder why there is no generic overload of ApplyTo?
// fill and return a GridPage
...
}
到目前为止,一切都很顺利。
现在,我对过滤项目的总数感兴趣,因此我已将$inlinecount=allpages
添加到查询字符串中。生成的请求URI如下所示:
http://localhost:54026/.../deliveries/page?$top=10&$skip=0&$inlinecount=allpages}
然后,我正在尝试检索这样的总计数(在调用ApplyTo
之后):
long? totalCount = Request.ODataProperties().TotalCount;
不幸的是,无论我尝试什么,totalCount
始终保持为空。我也尝试过使用:
object totalCount;
Request.Properties.TryGetValue("System.Web.OData.TotalCount", out totalCount);
但没有运气。查看Request
属性可以看出System.Web.OData.Properties
下有一个条目,但其所有属性都未初始化(Model
为空,NextLink
为空,TotalCount
是null等等)。
有人知道为什么这不起作用吗?顺便说一句,我正在使用Microsoft.AspNet.OData
v5.6。
答案 0 :(得分:4)
我必须指定$count=true
而不是$inlinecount=allpages
。根据{{3}},这在某个地方是一个突破性的变化。