我正在使用$expand
来增强 OData SharePoint REST 查询,并且我想$filter
使用扩展实体的属性之一。但是,我找不到任何关于正确语法的文档。我发现了一些可能建议使用实体/属性的地方,但在尝试之后,我失败了:
询问:
_vti_bin/listdata.svc/Posts?$expand=Category&$filter=substring(\"Featured Article\",Category/Title) eq false and year(Published) lt " +year+1+ " and month(Published) lt " +month+1+ " or day(Published) lt " +day+1+ " and ApprovalStatus eq '0'&$select=Title,Published,Category,ApprovalStatus&$orderby=Published desc"
返回:
syntax error '\"' at position 10.
当 Category 是高级别并且它的 Title 属性是子级别时,我将如何根据 Category 实体的 Title 进行过滤?