ORMLite - select specific columns of foreign object -


i have class contains foreign class b. want query class , of columns (fields) of class b. class selectcolumns, foreign object b?

@databasetable() public class {      @databasefield(generatedid = true)     private int id;      @databasefield(canbenull = false, foreign = true, foreignautorefresh = true)     private b mb; }  @databasetable() public class b {      @databasefield(generatedid = true)     private int id;        @databasefield       private string includethis;        @databasefield       private string excludethis; } 


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -