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