sockeqwe / sqlbrite-dao

DAO for SQLBrite
http://hannesdorfmann.com/android/sqlbrite-dao
Apache License 2.0
182 stars 22 forks source link

is it possible to map the results of a join query to two different java objects ? #48

Closed sandeepgahlawat closed 7 years ago

sandeepgahlawat commented 7 years ago

Hi,

I am trying to fetch results from db using a LEFT OUTER JOIN query and i want to map the results to a java object like below:

class Person{ int a; String b; Email email;

}

class Email{ int a ; String email one; String email two; }

ultimately i want a List, Is it possible ?