Esempio n. 1
0
File: mainDal.cs Progetto: T4g1/3eme
        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();
        }
Esempio n. 2
0
		private void detach_HighScores(HighScore entity)
		{
			this.SendPropertyChanging();
			entity.utilisateur = null;
		}
Esempio n. 3
0
 partial void DeleteHighScore(HighScore instance);
Esempio n. 4
0
 partial void UpdateHighScore(HighScore instance);
Esempio n. 5
0
 partial void InsertHighScore(HighScore instance);
Esempio n. 6
0
		private void attach_HighScores(HighScore entity)
		{
			this.SendPropertyChanging();
			entity.Jeux = this;
		}