| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Void> |
deleteByIdIn(List<Long> ids) |
reactor.core.publisher.Mono<Void> |
deleteByOwnerIgnoreCase(String owner) |
reactor.core.publisher.Flux<Anchor> |
findByOwnerIgnoreCase(String owner) |
reactor.core.publisher.Flux<Anchor> |
findByOwnerInIgnoreCase(List<String> owners) |
@Transactional @Query(value="select * from anchor a where upper(a.owner) = upper(:owner)") reactor.core.publisher.Flux<Anchor> findByOwnerIgnoreCase(String owner)
@Transactional @Query(value="select * from anchor a where upper(a.owner) in upper(:owners)") reactor.core.publisher.Flux<Anchor> findByOwnerInIgnoreCase(@Param(value="owners") List<String> owners)
@Transactional @Query(value="delete from anchor where upper(owner) = upper(:owner)") reactor.core.publisher.Mono<Void> deleteByOwnerIgnoreCase(String owner)
Copyright © 2020. All rights reserved.