Looking or some advice here.
My Xamarin Forms PCL project is using SQLite.Net-PCL, SQLite.Net.Async-PCL, SQLiteNetExtensions and SQLiteNetExtensions.Async -- all of these are NuGets.
It was disappointing to discover that SQLite.Net-PCL does not allow page_size to be changed from the default value of 4096 bytes and there are no current plans to fix that. ( https://github.com/oysteinkrog/SQLite.Net-PCL/issues/128 )
This is blowing out the size of my database unacceptably; I need 512 bytes which would make the database about eight times smaller. So I am looking to use another version of SQLite-Net (for Xamarin iOS/Android) that does allow page_size to be set.
Which version of SQLite-Net would be the best to use, given that I'm committed to SQLiteNetExtensions?
Will it be best to include SQLite sources in my project?
Will the SQLiteNetExtensions and SQLiteNetExtensions.Async NuGets still work with that version of SQLite or will I need to include the sources for those? (TwinCoders recommends using NuGets for SQLite.Net.)
Certainly would appreciate any advice.