Javadoc update using "DB" vs "Ebean"

This commit is contained in:
rob bygrave
2019-03-07 10:56:56 +13:00
parent 197852857d
commit 7ea6f16207
24 changed files with 95 additions and 152 deletions
@@ -22,8 +22,8 @@ package io.ebean;
* example.setName("Rob%");
* example.setNotes("%something%");
*
* List<Customer> list =
* Ebean.find(Customer.class)
* List<Customer> list =
* DB.find(Customer.class)
* .where()
* // pass the bean into the where() clause
* .exampleLike(example)
@@ -46,7 +46,7 @@ package io.ebean;
* .includeZeros();
*
* List<Customer> list =
* Ebean.find(Customer.class)
* DB.find(Customer.class)
* .where()
* .add(qbe)
* .findList();