示例#1
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new MvcFilmContext(
                       serviceProvider.GetRequiredService <DbContextOptions <MvcFilmContext> >()))
            {
                // Look for any movies.
                if (context.Film.Any())
                {
                    return; // DB has been seeded
                }

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

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

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

                    new Film
                {
                    Title       = "Rio Bravo",
                    ReleaseDate = DateTime.Parse("1959-4-15"),
                    Genre       = "Western",
                    Rating      = "R",
                    Price       = 3.99M
                }
                    );
                context.SaveChanges();
            }
        }
示例#2
0
 public FilmsController(MvcFilmContext context)
 {
     _context = context; // constructor uses dependency injection to inject the database context into the controller.
 }