【发布时间】:2015-06-23 09:40:56
【问题描述】:
我能否让 Objectify 返回 Set<> 或者它必须始终是 List<>?如果集合是可能的,那我可以做吗
@Entity
public class A{
...
private Set<Key<B>> myBs; // where B is an entity, of course?
private SortedSet<Key<D>> myDs;// where D is an entity, of course?
}
【问题讨论】:
标签: google-app-engine google-cloud-datastore objectify