odata4j AppEngineConsumerExample演示了如何使用类似于以下代码的字符串和数值过滤实体:
reportEntity("\nNon-discontinued product with reorderLevel > 25 (two filter predicates): " ,
c.getEntities("Product")
.filter("reorderLevel gt 25 and discontinued eq false")
.top(1)
.execute().first());
我对 Java 还很陌生(我的背景是 .NET/C#),但上面说的是有道理的。但是,我不确定如何为日期做类似的事情。来自我的 WCF OData 服务的日期格式为“yyyy-MM-dd'T'HH:mm:ss”。
在此先感谢您的帮助!