Why does the ERXKey.between() method return a EOQualifier and most of the other 
ERXKey methods return a chain-able ERX<something>Qualifier?

I am trying to do something like:


EOQualifier qual = Foo.START_DATE.between(startDate, endDate)

     .and(Bar.DATE_DELETED.isNull());


instead of:


EOQualifier qual = Foo.START_DATE.greaterThanOrEqualTo(startDate)

    .and(Foo.START_DATE.lessThanOrEqualTo(endDate))

.and(Bar.DATE_DELETED.isNull());


Is there another method like ERXKey.between() that return a chain-able 
ERXQualifier?


JR
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to