Example #1
0
 public Startup()
 {
     using (var db = new FastDbContext())
     {
         db.Database.EnsureCreated();
     }
 }
Example #2
0
 public HomeController(FastDbContext db)
 {
     this.db = db;
 }