コード例 #1
0
ファイル: Program.cs プロジェクト: BPalagachev/PollSystem
        private static void SeedDb(PollSystemDbCotnext dbContext)
        {
            dbContext.Add(CreateWhatsYourFavoriteProgrammingLanguage());
            dbContext.Add(CreateWhatsYourHomeTown());
            dbContext.Add(CreateWhatsYourFavoriteBeer());
            dbContext.Add(CreateWhatsYourFavoriteColor());

            dbContext.SaveChanges();
        }