コード例 #1
0
ファイル: SQLiteHelper.cs プロジェクト: pushkalmeruga/PLK_UI
 public bool InsertUserProfile(ProfileViewModel profile)
 {
     _sqLiteConnection.DropTable <ProfileViewModel>();
     _sqLiteConnection.CreateTable <ProfileViewModel>();
     return(_sqLiteConnection.Insert(profile) > 0);
 }