Changeset 5867520 for src/main/java/com/example/moviezone/repository/ProjectionIsPlayedInRoomRepository.java
- Timestamp:
- 02/08/23 15:48:51 (22 months ago)
- Branches:
- master
- Children:
- 2c7a732
- Parents:
- 90317ea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/repository/ProjectionIsPlayedInRoomRepository.java
r90317ea r5867520 10 10 11 11 public interface ProjectionIsPlayedInRoomRepository extends JpaRepository<ProjectionIsPlayedInRoom, ProjectionIsPlayedInRoomId> { 12 @Query("SELECT pir FROM ProjectionIsPlayedInRoom pir WHERE pir.id _projection = :id_projection")12 @Query("SELECT pir FROM ProjectionIsPlayedInRoom pir WHERE pir.idprojection = :id_projection") 13 13 List<ProjectionIsPlayedInRoom> findAllByProjectionId(@Param("id_projection") Integer id_projection); 14 14 }
Note:
See TracChangeset
for help on using the changeset viewer.