コード例 #1
0
ファイル: Seeding.cs プロジェクト: mvLaboratory/SimpleRSS
 private static void SeedCategories(RssStorage context)
 {
     if (context.Categories.SingleOrDefault(_ => _.Id == 1) == null)
     {
         Category defaultCategory = new Category("default", "");
         context.Categories.Add(defaultCategory);
         context.SaveChanges();
     }
 }
コード例 #2
0
ファイル: Seeding.cs プロジェクト: mvLaboratory/SimpleRSS
 internal static void Go(RssStorage context)
 {
     SeedCategories(context);
 }
コード例 #3
0
 //TODO:: manage instance
 public StorageManager()
 {
     UnitOfWork = new UnitOfWork();
     Storage    = (RssStorage)UnitOfWork.RssStorage;
 }