如何获取OneToMany的嵌套对象?

时间:2013-08-07 12:41:03

标签: java jpa orm playframework-2.0 ebean

我需要为客户集合获取嵌套的address对象:

Ebean.find(Company.class)  
        .fetch("customers") 
        .fetch("customers.address") 
        .findList(); 

但它只提取customercustomer.address.id字段的列表,address对象中的其他字段为null。热得好吗?

1 个答案:

答案 0 :(得分:0)

嗯,用最明显的方式:

.fetch("customers.address.fieldOne")
.fetch("customers.address.fieldTwo")