Is there an existing issue?
Use case
❗ It is very useful when implementing paged queries.
class Entity {
var ids: LongArray? = null
}
fun QueryBuilder<Entity>.filter(id: Long) {
contains(Entity_.ids, id)
}
Proposed solution
public QueryBuilder<T> contains(Property<T> property, bool value)
public QueryBuilder<T> contains(Property<T> property, int value)
public QueryBuilder<T> contains(Property<T> property, long value)
OR
public PropertyQueryCondition<ENTITY> contains(bool value)
public PropertyQueryCondition<ENTITY> contains(int value)
public PropertyQueryCondition<ENTITY> contains(long value)
Alternatives
TODO Describe any alternative solutions or features you've considered.
Additional context
TODO Add any other context (e.g. platform or language) about the feature request here.