package com.avaje.tests.query; import java.util.List; import org.junit.Test; import com.avaje.ebean.BaseTestCase; import com.avaje.ebean.Ebean; import com.avaje.tests.model.basic.Contact; import com.avaje.tests.model.basic.ContactNote; import com.avaje.tests.model.basic.Customer; import com.avaje.tests.model.basic.Order; import com.avaje.tests.model.basic.ResetBasicData; public class TestQueryFetchSkipPath extends BaseTestCase { @Test public void test() { ResetBasicData.reset(); List list = Ebean.find(Order.class) // .setAutoTune(true) .setAutoTune(false).select("status") // .fetch("customer","id") // .fetch("customer.contacts","id") .fetch("customer.contacts.notes", "title").findList(); for (Order order : list) { order.getStatus(); Customer customer = order.getCustomer(); List contacts = customer.getContacts(); for (Contact contact : contacts) { List notes = contact.getNotes(); for (ContactNote contactNote : notes) { contactNote.getTitle(); } } } } }