示例#1
0
 public EFOrderRepository(StoreDbContext ctx)
 {
     context = ctx;
 }
示例#2
0
        public static void EnsurePopulated(IApplicationBuilder app)
        {
            StoreDbContext context = app.ApplicationServices
                                     .CreateScope().ServiceProvider.GetRequiredService <StoreDbContext>();

            if (context.Database.GetPendingMigrations().Any())
            {
                context.Database.Migrate();
            }

            if (!context.Products.Any())
            {
                context.Products.AddRange(
                    new Product
                {
                    Name        = "Giraffe",
                    Description = "Pink with yellow polka dots",
                    Category    = "Exotic",
                    Price       = 500
                },
                    new Product
                {
                    Name        = "Turtle",
                    Description = "Box Turtle",
                    Category    = "Reptile",
                    Price       = 150
                },
                    new Product
                {
                    Name        = "Deer",
                    Description = "Baby Deer",
                    Category    = "Mammal",
                    Price       = 100
                },
                    new Product
                {
                    Name        = "Tucan",
                    Description = "Colorful feathers",
                    Category    = "Bird",
                    Price       = 90
                },
                    new Product
                {
                    Name        = "Dog",
                    Description = "Corgi",
                    Category    = "Dog",
                    Price       = 250
                },
                    new Product
                {
                    Name        = "Bunny",
                    Description = "Grey feathers with black spikes",
                    Category    = "Mammal",
                    Price       = 100
                },
                    new Product
                {
                    Name        = "Chicken",
                    Description = "Pink feet",
                    Category    = "Bird",
                    Price       = 10
                },
                    new Product
                {
                    Name        = "Horse",
                    Description = "Long hair with white eyebrows",
                    Category    = "Mammal",
                    Price       = 1000
                },
                    new Product
                {
                    Name        = "Alligator",
                    Description = "Blue spikes and orange body",
                    Category    = "Reptile",
                    Price       = 300
                }
                    );
                context.SaveChanges();
            }
        }
示例#3
0
 public EFStoreRepository(StoreDbContext ctx)
 {
     context = ctx;
 }