2013-08-07 142 views
0

我需要爲客戶收集獲取嵌套address對象:如何獲取OneToMany的嵌套對象?

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

但它在抓取物體addresscustomer的和customer.address.id領域,其他領域的單子都是null。熱做正確?

回答

0

那麼,在最明顯的方式:

.fetch("customers.address.fieldOne") 
.fetch("customers.address.fieldTwo") 
相關問題