ObjectBox toMany 列表
ObjectBox toMany List
我有两个以一对多关系连接的实体,我想拥有整个元素列表。
我试过了:
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();
您的 showcase.notices
已经是一个列表。
我有两个以一对多关系连接的实体,我想拥有整个元素列表。
我试过了:
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();
您的 showcase.notices
已经是一个列表。