Package-level declarations
Functions
Link copied to clipboard
fun <ROOT : Any, E, PROP : Collection<E>> NestedProperty<ROOT, PROP>.arrayContains(value: E): Specification<ROOT>
Creates a Specification that tests whether an element is contained in a nested native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).
Creates a Specification that tests whether an element is contained in a native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).
Link copied to clipboard
fun <ROOT : Any, E, PROP : Collection<E>> NestedProperty<ROOT, PROP>.arrayNotContains(value: E): Specification<ROOT>
Creates a Specification that tests whether an element is not contained in a nested native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).
Creates a Specification that tests whether an element is not contained in a native array column. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY).