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