コード例 #1
0
ファイル: Global.asax.cs プロジェクト: ekremaltin/TMF
 protected void Application_Start()
 {
     using (TmfContext db = new TmfContext())
     {
         db.Database.CreateIfNotExists();
     }
     AreaRegistration.RegisterAllAreas();
     RouteConfig.RegisterRoutes(RouteTable.Routes);
 }