Ejemplo n.º 1
0
        public static void CreateSeedData(this StoreAppContext context)
        {
            if (context.Database.GetMigrations().Count() > 0 &&
                context.Database.GetPendingMigrations().Count() == 0 &&
                context.Products.Count() == 0)
            {
                var s1 = new Supplier
                {
                    Name  = "Splash Dudes",
                    City  = "San Jose",
                    State = "CA"
                };
                var s2 = new Supplier
                {
                    Name  = "Soccer Town",
                    City  = "Chicago",
                    State = "IL"
                };
                var s3 = new Supplier
                {
                    Name  = "Chess Co",
                    City  = "New York",
                    State = "NY"
                };

                context.Products.AddRange(
                    new Product
                {
                    Name        = "Kayak",
                    Description = "A boat for one person",
                    Category    = "Watersports",
                    Price       = 275,
                    Supplier    = s1,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 4
                        }, new Rating {
                            Stars = 3
                        }
                    }
                },
                    new Product
                {
                    Name        = "Lifejacket",
                    Description = "Protective and fashionable",
                    Category    = "Watersports",
                    Price       = 48.95m,
                    Supplier    = s1,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 2
                        }, new Rating {
                            Stars = 5
                        }
                    }
                },
                    new Product
                {
                    Name        = "Soccer Ball",
                    Description = "FIFA-approved size and weight",
                    Category    = "Soccer",
                    Price       = 19.50m,
                    Supplier    = s2,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 1
                        }, new Rating {
                            Stars = 3
                        }
                    }
                },
                    new Product
                {
                    Name        = "Corner Flags",
                    Description = "Give your pitch a professional touch",
                    Category    = "Soccer",
                    Price       = 34.95m,
                    Supplier    = s2,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 3
                        }
                    }
                },
                    new Product
                {
                    Name        = "Stadium",
                    Description = "Flat-packed 35,000-seat stadium",
                    Category    = "Soccer",
                    Price       = 79500,
                    Supplier    = s2,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 1
                        },
                        new Rating {
                            Stars = 4
                        }, new Rating {
                            Stars = 3
                        }
                    }
                },
                    new Product
                {
                    Name        = "Thinking Cap",
                    Description = "Improve brain efficiency by 75%",
                    Category    = "Chess",
                    Price       = 16,
                    Supplier    = s3,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 5
                        },
                        new Rating {
                            Stars = 4
                        }
                    }
                },
                    new Product
                {
                    Name        = "Unsteady Chair",
                    Description = "Secretly give your opponent a disadvantage",
                    Category    = "Chess",
                    Price       = 29.95m,
                    Supplier    = s3,
                    Ratings     = new List <Rating> {
                        new Rating {
                            Stars = 3
                        }
                    }
                },
                    new Product
                {
                    Name        = "Human Chess Board",
                    Description = "A fun game for the family",
                    Category    = "Chess",
                    Price       = 75,
                    Supplier    = s3
                },
                    new Product
                {
                    Name        = "Bling-Bling King",
                    Description = "Gold-plated, diamond-studded King",
                    Category    = "Chess",
                    Price       = 1200,
                    Supplier    = s3
                });
                context.SaveChanges();
            }
        }
Ejemplo n.º 2
0
 // initiate database context
 public ProductController(StoreAppContext context)
 {
     _context = context;
 }