Exemplo n.º 1
0
        public static List <Question> ListConvert()
        {
            List <Question> questions = new List <Question>();

            using (var context = new MilionsContext())
            {
                questions = context.Questions.ToList();
            }
            return(questions);
        }
Exemplo n.º 2
0
        public static void AddQuestion(string qContent, string answA, string answB, string answC, string answD, char correct)
        {
            var question = new Question
            {
                QuestContent = qContent,
                AnswerA      = answA,
                AnswerB      = answB,
                AnswerC      = answC,
                AnswerD      = answD,
                Correct      = correct.ToString()
            };

            using (var context = new MilionsContext())
            {
                context.Questions.Add(question);
                context.SaveChanges();
            }
        }