I'm developing a cross-platform app using Xamarin. Now, for data storage I'm using both Online (through API) and offline(SQLite). The app I want to develop has dynamic UI and the UI configuration is stored in DB1, while the actual data stored in another database DB2.
Now, the issue I'm facing is that I have some views created in DB1 which fetches data from DB2 as well(i.e., VIEW acroSs multiple database) and I use that VIEW to create the UI with Data from the DB1.
I did some research and found that SQLite doesn't support the VIEW across multiple database.
Can anyone help me with some workaround that can fulfill my purpose? Also, I'm open to change the DB from SQLite to any other light-weight cross-platform-oriented database.
Thanks