Package ca.uhn.fhir.jpa.dao.data
Interface ITermConceptPropertyDao
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<TermConceptProperty,
,Long> IHapiFhirJpaRepository
,org.springframework.data.jpa.repository.JpaRepository<TermConceptProperty,
,Long> org.springframework.data.repository.ListCrudRepository<TermConceptProperty,
,Long> org.springframework.data.repository.ListPagingAndSortingRepository<TermConceptProperty,
,Long> org.springframework.data.repository.PagingAndSortingRepository<TermConceptProperty,
,Long> org.springframework.data.repository.query.QueryByExampleExecutor<TermConceptProperty>
,org.springframework.data.repository.Repository<TermConceptProperty,
Long>
public interface ITermConceptPropertyDao
extends org.springframework.data.jpa.repository.JpaRepository<TermConceptProperty,Long>, IHapiFhirJpaRepository
-
Method Summary
Modifier and TypeMethodDescriptioncountByCodeSystemVersion
(Long thePid) int
deleteByCodeSystemVersion
(Long thePid) 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
-
deleteByCodeSystemVersion
@Modifying @Query("DELETE FROM TermConceptProperty WHERE myCodeSystemVersion.myId = :cs_pid") int deleteByCodeSystemVersion(@Param("cs_pid") Long thePid) -
countByCodeSystemVersion
@Query("SELECT COUNT(t) FROM TermConceptProperty t WHERE t.myCodeSystemVersion.myId = :cs_pid") Integer countByCodeSystemVersion(@Param("cs_pid") Long thePid)
-