是否可以使用公式加载实体?
例如:
@formula("(select * from myEntity ent where ent.isLatest = TRUE )")
publicmyEntity getmyEntity()
{
return this.associatedPatientJournalEntries;
}
如果是这样,映射必须如何。
此外,使用公式加载某些实体的替代方法是什么?
答案 0 :(得分:2)
你可以,但公式看起来:
select ent from myEntity ent where ent.isLatest
另一种选择是,
mounting the entity in your method.
post loading method