java - Eager fetching blobs in Ebean under certain cases -
is there way make ebean eagerly fetch blobs under cases using ebean query api? know discarding @lob
annotation make ebean fetch blobs fetch blobs under cases not want.
after looking bit @ javadoc of ebean query api. found out how using:
query.select("*");
will make ebean fetch columns of table including blobs. alternatively if want fetch blob use:
query.select("blobpropertyname");
Comments
Post a Comment