我有一个班级Post
,其中我有一个list
Reviews
。是否可以在没有Post
(或作为空列表)的情况下检索reviewList
对象?或许我应该使用其他一些模型来实现这一目标。
@PersistenceCapable
class Post {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
long id;
@Persistent
String title;
@Persistent
List<Review> reviewList;
}
@PersistenceCapable
class Review {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
long id;
@Persistent
String comment;
}
答案 0 :(得分:3)