public static void Seed(HeavyContext context) { if (!context.Albums.Any()) { context.Albums.AddRange (new List <Album> { new Album { Artist = "Megadeth", Title = "Killing Is My Business... and Business Is Good!", CoverUrl = "https://upload.wikimedia.org/wikipedia/en/thumb/5/54/Combat_KIMB.jpg/220px-Combat_KIMB.jpg", Price = 10.99m, ReleaseDate = new DateTime(1985, 6, 12) }, new Album { Artist = "Megadeth", Title = "Peace Sells... but Who's Buying?", CoverUrl = "https://upload.wikimedia.org/wikipedia/en/4/40/Megadeth_-_Peace_Sells..._But_Who%27s_Buying-.jpg", Price = 9.99m, ReleaseDate = new DateTime(1989, 9, 19) }, new Album { Artist = "Megadeth", Title = "Rust in Peace", CoverUrl = "https://upload.wikimedia.org/wikipedia/en/thumb/d/dc/Megadeth-RustInPeace.jpg/220px-Megadeth-RustInPeace.jpg", Price = 10.99m, ReleaseDate = new DateTime(1990, 9, 24) }, new Album { Artist = "Gojira", Title = "L'Enfant Sauvage", CoverUrl = "https://upload.wikimedia.org/wikipedia/en/thumb/8/86/Gojira_-_L%27Enfant_Sauvage_cover.jpg/220px-Gojira_-_L%27Enfant_Sauvage_cover.jpg", Price = 13.99m, ReleaseDate = new DateTime(2012, 6, 26) }, new Album { Artist = "Gojira", Title = "The Way of All Flesh", CoverUrl = "https://upload.wikimedia.org/wikipedia/en/thumb/1/16/Gojira_-_The_Way_of_All_Flesh_-_2008.jpg/220px-Gojira_-_The_Way_of_All_Flesh_-_2008.jpg", Price = 9.99m, ReleaseDate = new DateTime(2008, 10, 13) } }); } context.SaveChanges(); }