Package ca.uhn.fhir.jpa.dao.data
Interface IResourceSearchViewDao
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ResourceSearchView,
,Long> IHapiFhirJpaRepository
,org.springframework.data.jpa.repository.JpaRepository<ResourceSearchView,
,Long> org.springframework.data.repository.ListCrudRepository<ResourceSearchView,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<ResourceSearchView,
,Long> org.springframework.data.repository.PagingAndSortingRepository<ResourceSearchView,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<ResourceSearchView>
,org.springframework.data.repository.Repository<ResourceSearchView,
Long>
public interface IResourceSearchViewDao
extends org.springframework.data.jpa.repository.JpaRepository<ResourceSearchView,Long>, IHapiFhirJpaRepository
-
Method Summary
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByResourceIds
@Query("SELECT v FROM ResourceSearchView v WHERE v.myResourceId in (:pids)") Collection<ResourceSearchView> findByResourceIds(@Param("pids") Collection<Long> pids)
-