0

我有两个与一对多关系连接的实体,我想拥有整个元素列表。
我试过:

int count = showcase.notices.size();
List<Notice> notList = showcase.notices.subList(0, count);

sublist定义说明sublist(int start, int end)了不在end列表中的位置。
有没有更直接的方法来获取整个列表?
有点像

List<Notice> notList = showcase.notices.getList();
4

1 回答 1

0

showcase.notices已经是一个列表。

于 2018-04-23T06:59:00.647 回答