Ejemplo n.º 1
0
 public static void Initialize(IServiceProvider serviceProvider)
 {
     using (var context = new CoreMVCContext(
                serviceProvider.GetRequiredService <DbContextOptions <CoreMVCContext> >()))
     {
         //List<Question> list = context.Question.ToList<Question>();
         //context.RemoveRange(list);
         if (context.Question.Any())
         {
             return;
         }
         context.Question.AddRange(
             new Question
         {
             Question_statement = "qwer?",
             Time          = DateTime.Parse("4:30 PM"),
             CorrectAnswer = "ty",
             Question_type = "Subjective"
         },
             new Question
         {
             Question_statement = "asd?",
             Time          = DateTime.Parse("4:30 PM"),
             CorrectAnswer = "d",
             Options       = "d,f,g,h",
             Question_type = "MCQ"
         },
             new Question
         {
             Question_statement = "fgh?",
             Time          = DateTime.Parse("4:30 PM"),
             CorrectAnswer = "g",
             Options       = "d,f,g,h",
             Question_type = "MCQ"
         },
             new Question
         {
             Question_statement = "sdf?",
             Time          = DateTime.Parse("4:30 PM"),
             CorrectAnswer = "f",
             Options       = "d,f,g,h",
             Question_type = "MCQ"
         },
             new Question
         {
             Question_statement = "zxc?",
             Time          = DateTime.Parse("4:30 PM"),
             CorrectAnswer = "xc",
             Question_type = "Subjective"
         }
             );
         context.SaveChanges();
     }
 }
Ejemplo n.º 2
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new CoreMVCContext(
                       serviceProvider.GetRequiredService <
                           DbContextOptions <CoreMVCContext> >()))
            {
                // Look for any movies.
                if (context.Movie.Any())
                {
                    return;   // DB has been seeded
                }

                context.Movie.AddRange(
                    new Movie
                {
                    Title       = "When Harry Met Sally",
                    ReleaseDate = DateTime.Parse("1989-2-12"),
                    Genre       = "Romantic Comedy",
                    Price       = 7.99M
                },

                    new Movie
                {
                    Title       = "Ghostbusters ",
                    ReleaseDate = DateTime.Parse("1984-3-13"),
                    Genre       = "Comedy",
                    Price       = 8.99M
                },

                    new Movie
                {
                    Title       = "Ghostbusters 2",
                    ReleaseDate = DateTime.Parse("1986-2-23"),
                    Genre       = "Comedy",
                    Price       = 9.99M
                },

                    new Movie
                {
                    Title       = "Rio Bravo",
                    ReleaseDate = DateTime.Parse("1959-4-15"),
                    Genre       = "Western",
                    Price       = 3.99M
                }
                    );
                context.SaveChanges();
            }
        }
Ejemplo n.º 3
0
        public static void Initailize(IServiceProvider serviceProvider)
        {
            using (var context = new CoreMVCContext(
                       serviceProvider.GetRequiredService <DbContextOptions <CoreMVCContext> >()))
            {
                if (context.Movie.Any())
                {
                    return;
                }

                context.Movie.Add(
                    new Movie {
                    Title       = "Default Movie",
                    ReleaseDate = DateTime.Parse("1993-10-31"),
                    Genre       = "Comedy",
                    Price       = 7.99M
                }
                    );
                context.SaveChanges();
            }
        }