mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#919 - io.ebean package initial
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package org.tests.autofetch;
|
||||
|
||||
import io.ebean.Ebean;
|
||||
import org.tests.model.basic.EBasicClob;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MainAutoFetchExcludeLazyLobs {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
EBasicClob a = new EBasicClob();
|
||||
a.setName("name 1");
|
||||
a.setTitle("a title");
|
||||
a.setDescription("not that meaningful");
|
||||
|
||||
Ebean.save(a);
|
||||
|
||||
List<EBasicClob> list = Ebean.find(EBasicClob.class)
|
||||
.setAutoTune(true)
|
||||
.findList();
|
||||
|
||||
for (EBasicClob bean : list) {
|
||||
bean.getName();
|
||||
// although we read the description
|
||||
// autofetch will not include it later
|
||||
bean.getDescription();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user