0

可以将 DateTimeOffset 转换为 long(以毫秒为单位的日期)

前任:

url/Fiels?$filter=cast(Birthdate,'Edm.Decimal') gt 0

这将返回我所有出生日期在 1970 年 1 月 1 日之后的字段......

但我明白了

   {
  "error":{
    "code":"","message":"The query specified in the URI is not valid. The binary operator GreaterThan is not defined for the types 'System.Object' and 'System.Nullable`1[System.Decimal]'."
  }
}
4

1 回答 1

1

请检查规范,仅支持数字原始类型转换为另一种原始类型。所以你想要的约定是不直接支持的,但你可以编写自定义的未绑定函数来存档它。

于 2014-11-07T15:44:12.890 回答