I'm using siena in a playframework app, also with google app engine. I would like to build a query to get entities filtering with a field "date" of type java.util.Date, if it's possible.
I've tried with something like
List<MyEntity> matchdays = MyEntity.all()
.filter("date", ">01/01/2011")
.fetch();
But doesn't work. I suppose we can't use operators in this kind of queries. Is there a way to do this?
Thank you in advance.