added querydsl to projectidearepo
This commit is contained in:
parent
07a4506195
commit
fbecde2f44
@ -1,6 +1,7 @@
|
||||
package se.su.dsv.scipro.springdata;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.querydsl.QueryDslPredicateExecutor;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import se.su.dsv.scipro.match.dataobject.ProjectIdea;
|
||||
|
||||
@ -10,7 +11,7 @@ import se.su.dsv.scipro.match.dataobject.ProjectIdea;
|
||||
*/
|
||||
|
||||
@Transactional(readOnly = true)
|
||||
public interface ProjectIdeaRepo extends JpaRepository<ProjectIdea, Long>{
|
||||
public interface ProjectIdeaRepo extends JpaRepository<ProjectIdea, Long>, QueryDslPredicateExecutor {
|
||||
|
||||
//nothing here yet
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user