findList
返回查询的 Bean 列表。
List<Customer> customers =
new QCustomer()
.email.istartsWith("rob")
.findList();
请注意,在执行此查询时,我们会在内存中保存所有 Bean。因此,当我们预期获取数百个 Bean 时,这样做很好,但当我们希望查询和读取大量结果时,我们应该考虑使用 findEach 查询。
返回查询的 Bean 列表。
List<Customer> customers =
new QCustomer()
.email.istartsWith("rob")
.findList();
请注意,在执行此查询时,我们会在内存中保存所有 Bean。因此,当我们预期获取数百个 Bean 时,这样做很好,但当我们希望查询和读取大量结果时,我们应该考虑使用 findEach 查询。