findList

Returns a list of beans for the query.

List<Customer> customers =
  new QCustomer()
    .email.istartsWith("rob")
    .findList();

Note that we hold all the beans in memory when executing this query. As such it is good when we expect to fetch hundreds of beans but we should consider using a findEach query when we look to query and read a very large number of results.