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#です)が、上記は理にかなっています。ただし、日付について同様のことを行う方法がわかりません。私のWCFODataサービスからの日付は、「yyyy-MM-dd'T'HH:mm:ss」の形式になっています。
よろしくお願いします!