Esempio n. 1
0
        //add to db
        static void AddToDB()
        {
            //connection to db
            JayaEntities db = new JayaEntities();
            HighScore currentScore = new HighScore();

            //add all info to current score
            currentScore.DateCreated = DateTime.Now;
            currentScore.Game = "Trivia";
            currentScore.Name = name;
            currentScore.Score = score;

            db.HighScores.Add(currentScore);

            db.SaveChanges();
        }