Create the table first:
public string Country
{
public string city
{
set;
get;
}
}
App.xaml.cs
Create the table :
db.createTable<country>();
Insert the default values in Table:
db.insert(new Country{City="Hyderabad"});
db.insert(new Country{city="Banglore"});

Jestin JoshiPosted Feb 14, 2017, 7:50 AM
Thank you! This helped me a lot