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

                context.Value.AddRange(
                    new Value
                {
                    Title    = "When Harry Met Sally",
                    Category = "Romantic Comedy",
                    Price    = 7.99M
                },

                    new Value
                {
                    Title    = "Ghostbusters ",
                    Category = "Comedy",
                    Price    = 8.99M
                },

                    new Value
                {
                    Title    = "Ghostbusters 2",
                    Category = "Comedy",
                    Price    = 9.99M
                },

                    new Value
                {
                    Title    = "Rio Bravo",
                    Category = "Western",
                    Price    = 3.99M
                }
                    );
                context.SaveChanges();
            }
        }
 public ValuesController(MvcValueContext context)
 {
     _context = context;
 }