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