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