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 - Autoloader issue not returning Class -

C++ Program To Find Smallest and Largest Number In Array -

java - How to put two numbers separated by a space into two different arrays -