Changeset a554435 for src/main/java/com/example/moviezone/repository
- Timestamp:
- 02/04/23 19:55:16 (22 months ago)
- Branches:
- master
- Children:
- 302b233, 4ee640e
- Parents:
- e097c1c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/repository/ProjectionRepository.java
re097c1c ra554435 4 4 import org.springframework.data.jpa.repository.JpaRepository; 5 5 6 import java.time.LocalDate; 7 import java.util.List; 8 6 9 public interface ProjectionRepository extends JpaRepository<Projection,Integer> { 10 // NOTE: CHANGE THIS WITH MATERIALIZED VIEW 11 List<Projection> findAllByDate_time_startBefore(LocalDate datum); 7 12 }
Note:
See TracChangeset
for help on using the changeset viewer.