Alin Dreghiciu wrote: > * matches: Property<String> matches a regexp. Or shall we call it "LIKE"?
I think "LIKE" has semantics from SQL that means "string contains" rather than regexp. matches is much better, and very useful. > * in: Property<T> in (T...) = evaluates to true when property value is > any of the values in array +1 > * between: Property >= minValue && Property <= maxValue Isn't this just syntactic sugar for "ge and le"? Might still be useful though. > Also, till now there is no support for ManyAssociation(s). Question is > what kind of filtering shall we support for ManyAssociation(s)? > This can be useful 9yet I do not know how easy can be implemented): > > * isEmpty, isNotEmpty > * sizeEq, sizeNotEq, sizeGe, sizeGt, sizeLe, sizeLt > * contains: ManyAssociation collection contains a certain entity The main ones I can think of are contains and isEmpty/isNotEmpty. Not sure how useful the size* ones are. Anyone with practical experience of needing these? /Rickard _______________________________________________ qi4j-dev mailing list [email protected] http://lists.ops4j.org/mailman/listinfo/qi4j-dev

