I am using SugarORM for my Android application. In my project I have couple of tables and I was wondering is there a way to to join them into another Class Object that has columns from multiple tables?
If yes, then example would be very helpful.
I am using SugarORM for my Android application. In my project I have couple of tables and I was wondering is there a way to to join them into another Class Object that has columns from multiple tables?
If yes, then example would be very helpful.
Copyright © 2021 Jogjafile Inc.
SugarORM provides a Query Builder object for simple queries. Since it doesn't provide supporto for joins, you can directly execute a raw query and store the result into an object created ad-hoc.
So, build your custom raw query renaming the fields in the SELECT part
and then create your custom object
Here the documentation:
raw queries with joins in sqlite
how to execute queries in sugarORM