I want to give the version for the sqlite(SQLite.NET component) database while creating it in Xamarin(Monodroid) , And how to handle the version of database during any modifications in the table and update in playstore. how I can get OnUpgrade functionality like android native SQLiteOpenHelper class.
I am using below way
string folder = Environment.GetFolderPath (Environment.SpecialFolder.Personal);
var conn = new SQLiteConnection (System.IO.Path.Combine (folder, "stocks.db"));
conn.CreateTable<Stock>();
conn.CreateTable<Valuation>();
Did you create a sqlite helper in Android-Xamarin ?
Create a class which extends SqliteHelper
P.S It has onCreate and onUpgrade methods to help you.