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

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

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -