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