在Hibernate中通过ID获取记录

时间:2013-06-29 06:16:36

标签: hibernate

我正在做一些CRUD操作。所以我找到了如何创建,更新,删除和部分选择语句。为什么我说部分选择意味着我有三个实体叫PersonContactInformationAddress。这三个对象之间的关系AddressContactInformation中的外键,ContactInformationPerson中的外键。所以现在我知道了人员ID,我怎样才能获得与此人员ID相关的记录(我想要PersonContactInformationAddress记录)。目前我正在使用

    Model model = (Model) this.getCurrentSession().get(
                this.getPersistentClass(), argId);

此处持久类为Person.class。因此,我可以获得Person记录,但我无法获得ContactInformationAddress记录。见下图。

enter image description here

0 个答案:

没有答案