0

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

我有类似 Pinterest 模型的东西,其中用户可以关注多个板,每个板都包含多个 Pin 图。现在,我需要构建类似于 Pinterest 主页的东西,其中会根据用户的关注操作出现许多新的 pin,按最新的在顶部排序。

换句话说,我需要类似下面的伪查询:

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

我对“包含在”部分有一点问题

4

1 回答 1

0

如果您有一个带有 followBoards 属性的 User 类和一个带有 pin 属性的 Board 类,则类似于

select pin from User user join user.followedBoards board join board.pins pin ....
于 2013-02-05T10:20:08.400 回答