cayenne icon indicating copy to clipboard operation
cayenne copied to clipboard

CAY-2807 entity property disambiguate method parameters

Open Ivan-nikitko opened this issue 2 years ago • 0 comments

API redesign in EntityProperty, CollectionProperty, MapProperty

Deprecated this methods:

Expression inId(Collection<Object> ids) Expression inId(Object firstId, Object... moreIds)

Expression ninId(Collection<Object> ids) Expression ninId(Object firstId, Object... moreIds)

in favor of this:

Expression idsInCollection(Collection<?> ids) Expression idsIn(Object... ids)

Expression idsNotInCollection(Collection<?> ids) Expression idsNotIn(Object... ids)

Ivan-nikitko avatar Oct 16 '23 11:10 Ivan-nikitko