You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
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.