public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new RazorPageMovie2Context(
                       serviceProvider.GetRequiredService <
                           DbContextOptions <RazorPageMovie2Context> >()))
            {
                // Look for any movies.
                if (context.Movies.Any())
                {
                    return;   // DB has been seeded
                }

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

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

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

                    new Movies
                {
                    Title       = "Rio Bravo",
                    ReleaseDate = DateTime.Parse("1959-4-15"),
                    Genre       = "Western",
                    Price       = 3.99M,
                    Rating      = "H"
                },
                    new Movies
                {
                    Title       = "Marvel",
                    ReleaseDate = DateTime.Parse("2019-4-22"),
                    Genre       = "Action",
                    Price       = 10.9M,
                    Rating      = "R"
                }
                    );
                context.SaveChanges();
            }
        }
Beispiel #2
0
 public CreateModel(RazorPageMovie2.Models.RazorPageMovie2Context context)
 {
     _context = context;
 }
 public DetailsModel(RazorPageMovie2.Models.RazorPageMovie2Context context)
 {
     _context = context;
 }
 public EditModel(RazorPageMovie2.Models.RazorPageMovie2Context context)
 {
     _context = context;
 }
 public IndexModel(RazorPageMovie2.Models.RazorPageMovie2Context context)
 {
     _context = context;
 }