Beispiel #1
0
        public static void Initialize(RecipeContext context)
        {
            if (context.Recipe.Any())
            {
                return;   // DB has been seeded
            }

            var recipes = new Recipe[] {
                new Recipe {
                    Title  = "Spejlæg", Procedure = "Steg lortet",
                    Author = "Nikolaj", Published = DateTime.Now
                }
            };

            foreach (Recipe rec in recipes)
            {
                context.Recipe.Add(rec);
            }
            context.SaveChanges();

            var units = new Unit[] {
                new Unit {
                    Name = "Gr"
                },
                new Unit {
                    Name = "Stk"
                },
                new Unit {
                    Name = "Ml"
                },
                new Unit {
                    Name = "L"
                }
            };

            foreach (Unit un in units)
            {
                context.Units.Add(un);
            }
            context.SaveChanges();

            var ingredients = new Ingredient[] {
                new Ingredient {
                    Name     = "Æg", Quantity = 3,
                    UnitID   = units.Single(i => i.Name == "Stk").ID,
                    RecipeID = recipes.Single(i => i.Title == "Spejlæg").ID
                }
            };

            foreach (Ingredient ing in ingredients)
            {
                context.Ingredients.Add(ing);
            }
            context.SaveChanges();

            var comments = new Comment[] {
                new Comment {
                    Published = DateTime.Now, CommentText = "Verdens bedste opskrift", RecipeID = recipes.Single(i => i.Title == "Spejlæg").ID
                },
                new Comment {
                    Published = DateTime.Now, CommentText = "Hader den her opskrift", RecipeID = recipes.Single(i => i.Title == "Spejlæg").ID
                }
            };

            foreach (Comment comment in comments)
            {
                context.Comments.Add(comment);
            }
            context.SaveChanges();

            var ratings = new Rating[] {
                new Rating {
                    Value = 5, RecipeID = recipes.Single(r => r.Title == "Spejlæg").ID
                },
                new Rating {
                    Value = 1, RecipeID = recipes.Single(r => r.Title == "Spejlæg").ID
                },
            };

            foreach (Rating rating in ratings)
            {
                context.Ratings.Add(rating);
            }
            context.SaveChanges();
        }
 public DeleteModel(RecipeSite.Models.RecipeContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public IndexModel(RecipeSite.Models.RecipeContext context)
 {
     _context = context;
 }
 public EditModel(RecipeSite.Models.RecipeContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public CreateModel(RecipeSite.Models.RecipeContext context)
 {
     _context = context;
 }
 public DetailsModel(RecipeSite.Models.RecipeContext context)
 {
     _context = context;
 }