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

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

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