Beispiel #1
0
 public bool InsertUserProfile(ProfileViewModel profile)
 {
     _sqLiteConnection.DropTable <ProfileViewModel>();
     _sqLiteConnection.CreateTable <ProfileViewModel>();
     return(_sqLiteConnection.Insert(profile) > 0);
 }