コード例 #1
0
ファイル: SeedData.cs プロジェクト: eempc/ASP.NET-Tutorial-2
        public static void Initialize(IServiceProvider serviceProvider)
        {
            using (var context = new WebApplication2Context(serviceProvider.GetRequiredService <DbContextOptions <WebApplication2Context> >())) {
                if (context.Movie.Any())
                {
                    return;
                }

                context.Movie.AddRange(
                    new Movie {
                    Title       = "When Harry Met Sally",
                    ReleaseDate = DateTime.Parse("1989-2-12"),
                    Genre       = "Romantic Comedy",
                    Price       = 7.99M,
                    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();
            }
        }
コード例 #2
0
ファイル: SeedData.cs プロジェクト: AnonimusP/Projects
 public static void Initialize(IServiceProvider serviceProvider)
 {
     {
         using (var context = new WebApplication2Context(serviceProvider.GetRequiredService <DbContextOptions <WebApplication2Context> >()))
         {
             //Look for any movies
             if (context.Game.Any())
             {
                 return; //DB has been seeded
             }
             context.Game.AddRange(
                 new Game
             {
                 tytul        = "CS:GO",
                 data_wydania = DateTime.Parse("01-11-2008"),
                 gatunek      = "Akcji/Multiplayer",
                 ocena        = "18+",
                 cena         = 2
             },
                 new Game
             {
                 tytul        = "Battlefield",
                 data_wydania = DateTime.Parse("01-11-2010"),
                 gatunek      = "Akcji/Multiplayer",
                 ocena        = "18+",
                 cena         = 2
             },
                 new Game
             {
                 tytul        = "Skyrim",
                 data_wydania = DateTime.Parse("01-11-2012"),
                 gatunek      = "Akcji/RPG",
                 ocena        = "13+",
                 cena         = 2
             }
                 );
             context.SaveChanges();
         }
     }
 }