Exemple #1
0
 public static void DbInit(DwDbContext c)
 {
     c.Database.EnsureCreated();
     //c.Database.Migrate();
     c.CommonConfig.Add(new CommonConfigEntity {
         Item = "BlogPageSize", Value = "20"
     });
     c.CommonConfig.Add(new CommonConfigEntity {
         Item = "BlogReplyPageSize", Value = "10"
     });
     c.CommonConfig.Add(new CommonConfigEntity {
         Item = "ForumPostPageSize", Value = "20"
     });
     c.CommonConfig.Add(new CommonConfigEntity {
         Item = "ForumReplyPageSize", Value = "20"
     });
     c.CommonConfig.Add(new CommonConfigEntity {
         Item = "ForumSubReplyPageSize", Value = "10"
     });
     c.SaveChanges();
 }
Exemple #2
0
 public static void DbInit(DwDbContext c)
 {
     c.Database.EnsureCreated();
     //c.Database.Migrate();
     c.SaveChanges();
 }