一个复杂的PlayFramework查询

时间:2013-02-05 10:09:12

标签: java jpa playframework playframework-1.x

我正在尝试构建以下内容:

我有类似Pinterest模型的东西,用户可以跟随多个板,每个板都包含许多引脚。现在,我需要构建一些类似于Pinterest主页的东西,根据用户的跟随操作,出现一些新的引脚,按照最新的顺序排列。

换句话说,我需要一些像以下伪查询那样的东西:

Select all the Pins whose Board is contained within currentUser.followedBoards and order by dateAdded Desc and select the first 20;

我对“包含在内的”部分

有一些问题

1 个答案:

答案 0 :(得分:0)

如果你有一个带有followBoards属性的User类和一个带有pins属性的Board类,它就像是

select pin from User user join user.followedBoards board join board.pins pin ....