gpt4 book ai didi

asp.net - WCF 数据服务查询 URL 中 DateTime 的 $filter 选项

转载 作者:行者123 更新时间:2023-12-02 16:12:13 24 4
gpt4 key购买 nike

WCF 数据服务允许通过 URL 中的选项方便地查询和过滤数据。例如,假设我想要价格大于 20 的产品:

http://www.example.com/Service.svc/Products?$filter=Price gt 20

但是如何将 $filter 选项与 DateTime 一起使用?假设我想要本月修改过的所有产品。

http://www.example.com/Service.svc/Products?$filter=ModifiedDate gt '2012-05-02'

这对我不起作用;它给出了错误消息

Operator 'gt' incompatible with operand types 'System.DateTime' and 'System.String' at position 13.

我对其他比较运算符(ge、lt、le、eq)也得到同样的结果。到底是怎么回事?我该如何进行这项工作?我需要特定的日期时间格式吗?我上面尝试过的似乎有记录here .

最佳答案

您好,请尝试使用以下语法

$filter=ModifiedDate gt datetime'2012-05-02T00:00:00'

其他日期时间函数可以在 odata url 约定的引用中找到

URI 约定:

http://msdn.microsoft.com/en-us/library/dd728283.aspx

关于asp.net - WCF 数据服务查询 URL 中 DateTime 的 $filter 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10825214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com