Advertisement
Danny_Berova

SeedGamesInGameStore

Jun 10th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 6.50 KB | None | 0 0
  1. private void SeedGamesInGameStore()
  2.         {
  3.             using (var db = new GameStoreDbContext())
  4.             {
  5.                 if (!db.Games.Any())
  6.                 {
  7.                     Console.WriteLine("Seeding games in database...");
  8.                     var games = new List<Game>
  9.                     {
  10.                        
  11.                         new Game {
  12.                             Title = "Test1",
  13.                             Description = "Enter the Speedcross and beat its current champion, Jason Munroe aka the Barracuda. Two new cars, a brand new car class and sixteen Speedcross events.",
  14.                             ImageUrl = "http://igg-games.com/wp-content/uploads/2018/03/Need-for-Speed-Payback-Free-Download.jpg",
  15.                             VideoId = "MzADhQLHVt8",
  16.                             Price = 42,
  17.                             Size = 17.8,
  18.                             ReleaseDate = DateTime.ParseExact("2017-10-11", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  19.                         },
  20.                         new Game {
  21.                             Title = "Test2",
  22.                             Description = "Enter the Speedcross and beat its current champion, Jason Munroe aka the Barracuda. Two new cars, a brand new car class and sixteen Speedcross events. Enter the Speedcross and beat its current champion, Jason Munroe aka the Barracuda. Two new cars, a brand new car class and sixteen Speedcross events.",
  23.                             ImageUrl = "https://i.ytimg.com/vi/7dHSzsSDnvs/maxresdefault.jpg",
  24.                             VideoId = "MzADhQLHVt8",
  25.                             Price = 59.00m,
  26.                             Size = 17.8,
  27.                             ReleaseDate = DateTime.ParseExact("2016-10-10", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  28.                         },
  29.                         new Game {
  30.                             Title = "Test3",
  31.                             Description = "Witness one of the most popular eSports games of all time, with the objective-based multiplayer first-person shooter Counter-Strike: Global Offensive.Take control of either Terrorists or Counter Terrorists, as you attempt to complete objectives dependent on the team you choose, whilst also trying to eliminate the enemy team. Global Offensive features five online game modes, including Classic Casual and Competitive, Bomb Scenario, Hostage Scenario, Arms Race, Demolition and Deathmatch.",
  32.                             ImageUrl = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQENNqsRH-QOmhtkolLom6D01h6Y3q0CzfKd-aEGJIDhCTUdd1c",
  33.                             VideoId = "bCsPUSR7Kzg",
  34.                             Price = 11.99m,
  35.                             Size = 2.7,
  36.                             ReleaseDate = DateTime.ParseExact("2012-05-12", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  37.                         },
  38.                         new Game {
  39.                             Title = "Test4",
  40.                             Description = "Witness one of the most popular eSports games of all time, with the objective-based multiplayer first-person shooter Counter-Strike: Global Offensive.Take control of either Terrorists or Counter Terrorists, as you attempt to complete objectives dependent on the team you choose, whilst also trying to eliminate the enemy team. Global Offensive features five online game modes, including Classic Casual and Competitive, Bomb Scenario, Hostage Scenario, Arms Race, Demolition and Deathmatch.",
  41.                             ImageUrl = "https://steamcdn-a.akamaihd.net/steam/apps/730/header.jpg?t=1525134820",
  42.                             VideoId = "bCsPUSR7Kzg",
  43.                             Price = 11.99m,
  44.                             Size = 2.7,
  45.                             ReleaseDate = DateTime.ParseExact("2012-05-12", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  46.                         },
  47.                         new Game {
  48.                             Title = "Test5",
  49.                             Description = "Enter the Speedcross and beat its current champion, Jason Munroe aka the Barracuda. Two new cars, a brand new car class and sixteen Speedcross events.",
  50.                             ImageUrl = "http://igg-games.com/wp-content/uploads/2018/03/Need-for-Speed-Payback-Free-Download.jpg",
  51.                             VideoId = "MzADhQLHVt8",
  52.                             Price = 23,
  53.                             Size = 12.8,
  54.                             ReleaseDate = DateTime.ParseExact("2017-10-11", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  55.                         },
  56.                         new Game {
  57.                             Title = "Test6",
  58.                             Description = "Witness one of the most popular eSports games of all time, with the objective-based multiplayer first-person shooter Counter-Strike: Global Offensive.Take control of either Terrorists or Counter Terrorists, as you attempt to complete objectives dependent on the team you choose, whilst also trying to eliminate the enemy team. Global Offensive features five online game modes, including Classic Casual and Competitive, Bomb Scenario, Hostage Scenario, Arms Race, Demolition and Deathmatch.",
  59.                             ImageUrl = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQENNqsRH-QOmhtkolLom6D01h6Y3q0CzfKd-aEGJIDhCTUdd1c",
  60.                             VideoId = "bCsPUSR7Kzg",
  61.                             Price = 12.92m,
  62.                             Size = 2.8,
  63.                             ReleaseDate = DateTime.ParseExact("2012-05-12", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  64.                         },
  65.                         new Game {
  66.                             Title = "Test7",
  67.                             Description = "Enter the Speedcross and beat its current champion, Jason Munroe aka the Barracuda. Two new cars, a brand new car class and sixteen Speedcross events. Enter the Speedcross and beat its current champion, Jason Munroe aka the Barracuda. Two new cars, a brand new car class and sixteen Speedcross events.",
  68.                             ImageUrl = "https://i.ytimg.com/vi/7dHSzsSDnvs/maxresdefault.jpg",
  69.                             VideoId = "MzADhQLHVt8",
  70.                             Price = 59.00m,
  71.                             Size = 17.8,
  72.                             ReleaseDate = DateTime.ParseExact("2015-01-10", "yyyy-MM-dd", CultureInfo.InvariantCulture)
  73.                         },
  74.  
  75.  
  76.                     };
  77.                     db.AddRange(games);
  78.                     db.SaveChanges();
  79.                 }
  80.             }
  81.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement