예제 #1
0
        public static void Seed(ProductCrudRPContext context)
        {
            context.Database.EnsureCreated();

            if (context.Products.Count() == 0 && context.Categories.Count() == 0)
            {
                Category c1 = new Category {
                    Name = "Mens Footwear"
                };
                Category c2 = new Category {
                    Name = "Womens Footwear"
                };

                context.Products.AddRange(
                    new Product
                {
                    Name     = "Leather Saddle Loafers, Tan",
                    Price    = 34.00M,
                    Category = c1
                },
                    new Product
                {
                    Name     = "Flip Flops, Red",
                    Price    = 19.50M,
                    Category = c1
                },
                    new Product
                {
                    Name     = "Almond Toe Court Shoes, Black",
                    Price    = 99.00M,
                    Category = c2
                },
                    new Product
                {
                    Name     = "Suede Shoes, Blue",
                    Price    = 52.99M,
                    Category = c2
                }
                    );

                context.SaveChanges();
            }
        }
예제 #2
0
 public void Add(Product product)
 {
     _context.Products.Add(product);
     _context.SaveChanges();
 }
 public void Add(Category category)
 {
     _context.Categories.Add(category);
     _context.SaveChanges();
 }