address
顧客コレクション用にネストされたオブジェクトをフェッチする必要があります。
Ebean.find(Company.class)
.fetch("customers")
.fetch("customers.address")
.findList();
ただし、customer
とフィールドのリストのみをフェッチし、オブジェクトcustomer.address.id
の他のフィールドはです。それを正しく行うのは難しいですか?address
null