Posts

Showing posts from March, 2018

SQLite Queries Xamarin.Forms

public class LocalDB     {         private SQLiteConnection _sqlconnection;         bool returnvalue;         public LocalDB()         {             //Getting conection and Creating table              _sqlconnection = DependencyService.Get<ISQLite>().GetConnection();             _sqlconnection.CreateTable<SampleModel>();         }         //Get all         public IEnumerable<SampleModel> GetAllLocation()         {             return (from t in ...
Native2Forms Call Method   (App)App.Current).MethodName();