Exemplo n.º 1
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new MovieStoreWebAppContext(
                       serviceProvider.GetRequiredService <
                           DbContextOptions <MovieStoreWebAppContext> >()))
            {
                // Look for any movies.
                if (context.Movie.Any())
                {
                    return;   // DB has been seeded
                }

                context.Movie.AddRange(
                    new Movie
                {
                    Title       = "Titanic",
                    ReleaseDate = DateTime.Parse("1998-1-22"),
                    Genre       = "Drama",
                    Price       = 7.99M
                },
                    new Movie
                {
                    Title       = "Scream",
                    ReleaseDate = DateTime.Parse("1998-5-7"),
                    Genre       = "Horror",
                    Price       = 8.99M
                },
                    new Movie
                {
                    Title       = "American Pie",
                    ReleaseDate = DateTime.Parse("1999-12-2"),
                    Genre       = "Comedy",
                    Price       = 9.99M
                }
                    );
                context.SaveChanges();
            }
        }
Exemplo n.º 2
0
 public EditModel(MovieStoreWebAppContext context)
 {
     _context = context;
 }