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

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -