小编典典

Hibernate:使用公式加载实体

hibernate

是否可以使用公式加载实体?

例如:

@formula("(select * from myEntity ent where ent.isLatest = TRUE )")
publicmyEntity getmyEntity()
{
    return this.associatedPatientJournalEntries;
}

如果是这样,则映射必须看起来如何。

另外,使用公式加载某些实体的替代方法是什么?


阅读 229

收藏
2020-06-20

共1个答案

小编典典

可以,但是公式看起来像:

select ent from myEntity ent where ent.isLatest

另一种选择是

mounting the entity in your method.

post loading method
2020-06-20