在JPA中为app引擎实现祖先查询的方法是什么?
我知道@Extension注释但它在查询中是如何使用的?
@Entity
public class Event {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Extension(vendorName="datanucleus", key="gae.parent-pk", value = "true")
private Key id;
}