The sqlite sample has a bug where it will insert more records into the table every time the app starts up. This is easily prevented by doing a count * and exiting early if records exist.

This commit is contained in:
Paul Batum 2012-05-14 22:02:33 -07:00
Родитель abf3bb1a94
Коммит c289981784
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -80,6 +80,10 @@ namespace Xamarin.Screens.SQLiteNet
// create the tables
db.CreateTable<Person> ();
// skip inserting data if it already exists
if(db.Table<Person>().Count() > 0)
return;
// declare vars
List<Person> people = new List<Person> ();
Person person;