Example #1
0
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new Mycoreapp2Context(
                       serviceProvider.GetRequiredService <DbContextOptions <Mycoreapp2Context> >()))
            {
                if (context.Movie.Any())
                {
                    return;
                }

                context.Movie.AddRange(
                    new Movie
                {
                    Title       = "LOTR",
                    ReleaseDate = DateTime.Parse("1989-2-12"),
                    Genre       = "Fantasy",
                    Price       = 100M,
                    Rating      = "R"
                },

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

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

                    new Movie
                {
                    Title       = "Rio Bravo",
                    ReleaseDate = DateTime.Parse("1959-4-15"),
                    Genre       = "Western",
                    Price       = 3.99M,
                    Rating      = "R"
                }

                    );
                context.SaveChanges();
            }
        }
Example #2
0
 public DetailsModel(Mycoreapp2.Models.Mycoreapp2Context context)
 {
     _context = context;
 }
 public DeleteModel(Mycoreapp2.Models.Mycoreapp2Context context)
 {
     _context = context;
 }
Example #4
0
 public IndexModel(Mycoreapp2.Models.Mycoreapp2Context context)
 {
     _context = context;
 }
 public EditModel(Mycoreapp2.Models.Mycoreapp2Context context)
 {
     _context = context;
 }