
Package ca.uhn.fhir.jpa.dao.data
Interface ITermConceptParentChildLinkDao
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<TermConceptParentChildLink,,TermConceptParentChildLink.TermConceptParentChildLinkPk> IHapiFhirJpaRepository,org.springframework.data.jpa.repository.JpaRepository<TermConceptParentChildLink,,TermConceptParentChildLink.TermConceptParentChildLinkPk> org.springframework.data.repository.ListCrudRepository<TermConceptParentChildLink,,TermConceptParentChildLink.TermConceptParentChildLinkPk> org.springframework.data.repository.ListPagingAndSortingRepository<TermConceptParentChildLink,,TermConceptParentChildLink.TermConceptParentChildLinkPk> org.springframework.data.repository.PagingAndSortingRepository<TermConceptParentChildLink,,TermConceptParentChildLink.TermConceptParentChildLinkPk> org.springframework.data.repository.query.QueryByExampleExecutor<TermConceptParentChildLink>,org.springframework.data.repository.Repository<TermConceptParentChildLink,TermConceptParentChildLink.TermConceptParentChildLinkPk>
public interface ITermConceptParentChildLinkDao
extends org.springframework.data.jpa.repository.JpaRepository<TermConceptParentChildLink,TermConceptParentChildLink.TermConceptParentChildLinkPk>, IHapiFhirJpaRepository
-
Method Summary
Modifier and TypeMethodDescriptionintdeleteByCodeSystemVersion(Long thePid) findAllWithChild(Long theConceptPid) 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
-
findAllWithChild
@Query("SELECT t.myParentPid FROM TermConceptParentChildLink t WHERE t.myChildPid = :child_pid") Collection<Long> findAllWithChild(@Param("child_pid") Long theConceptPid) -
deleteByCodeSystemVersion
@Modifying @Query("DELETE FROM TermConceptParentChildLink WHERE myCodeSystemVersionPid = :cs_pid") int deleteByCodeSystemVersion(@Param("cs_pid") Long thePid)
-