collectionNotIncludes
Creates a Specification that tests whether a native collection column does not contain all elements of the given sub-collection. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY) and typed as Collection.
Return
A Specification that tests whether not all elements of the sub-collection are contained in the native collection column.
Parameters
the sub-collection whose elements must not all be present in the column.
Type Parameters
the type of the entity.
the type of the element in the collection.
Creates a Specification that tests whether a nested native collection column does not contain all elements of the given sub-collection. Use this for properties mapped with @JdbcTypeCode(SqlTypes.ARRAY) and typed as Collection.
Return
A Specification that tests whether not all elements of the sub-collection are contained in the nested native collection column.
Parameters
the sub-collection whose elements must not all be present in the column.
Type Parameters
the root entity type.
the type of the element in the collection.
the type of the Collection property.