
Package ca.uhn.fhir.jpa.dao.data
Interface ITermConceptPropertyDao
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<TermConceptProperty,,IdAndPartitionId> IHapiFhirJpaRepository,org.springframework.data.jpa.repository.JpaRepository<TermConceptProperty,,IdAndPartitionId> org.springframework.data.repository.ListCrudRepository<TermConceptProperty,,IdAndPartitionId> org.springframework.data.repository.ListPagingAndSortingRepository<TermConceptProperty,,IdAndPartitionId> org.springframework.data.repository.PagingAndSortingRepository<TermConceptProperty,,IdAndPartitionId> org.springframework.data.repository.query.QueryByExampleExecutor<TermConceptProperty>,org.springframework.data.repository.Repository<TermConceptProperty,IdAndPartitionId>
public interface ITermConceptPropertyDao
extends org.springframework.data.jpa.repository.JpaRepository<TermConceptProperty,IdAndPartitionId>, IHapiFhirJpaRepository
-
Method Summary
Modifier and TypeMethodDescriptioncountByCodeSystemVersion(Long thePid) intdeleteByCodeSystemVersion(Long thePid) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods 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)
-