Exemple #1
0
        public void InsertIntoHighScores(int idJoueur, int idJeux, int Score) {
            HighScore hs = new HighScore();
            hs.idJoueur = idJoueur;
            hs.idJeux = idJeux;
            hs.Score = Score;

            DB.HighScores.InsertOnSubmit(hs);
            if (AutoCommit)
                DB.SubmitChanges();
        }
Exemple #2
0
		private void detach_HighScores(HighScore entity)
		{
			this.SendPropertyChanging();
			entity.utilisateur = null;
		}
Exemple #3
0
 partial void DeleteHighScore(HighScore instance);
Exemple #4
0
 partial void UpdateHighScore(HighScore instance);
Exemple #5
0
 partial void InsertHighScore(HighScore instance);
Exemple #6
0
		private void attach_HighScores(HighScore entity)
		{
			this.SendPropertyChanging();
			entity.Jeux = this;
		}